Skip to content

Commit b7d039a

Browse files
authored
Merge pull request #166 from iMichka/comment
Doc: update comments
2 parents 37e40e6 + 74eb6a3 commit b7d039a

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/pygccxml/__init__.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
# Distributed under the Boost Software License, Version 1.0.
44
# See http://www.boost.org/LICENSE_1_0.txt
55

6-
"""Python CastXML or GCC-XML front end.
6+
"""Python CastXML front end.
77
88
This package provides functionality to extract and inspect
99
declarations from C/C++ header files. This is accomplished
10-
by invoking an external tool like CastXML or GCC-XML,
10+
by invoking an external tool like CastXML,
1111
which parses a header file and dumps the declarations as a
1212
XML file. This XML file is then read by pygccxml and the contents
1313
are made available as appropriate Python objects.
@@ -39,9 +39,6 @@
3939
# to know what is deprecated.
4040
warnings.simplefilter("always", DeprecationWarning)
4141

42-
# TODO:
43-
# 1. Add "explicit" property for constructors
44-
4542
version = sys.version_info
4643

4744
if version < (3, 8):

0 commit comments

Comments
 (0)