Skip to content

Commit 8a4b04f

Browse files
committed
Remove unused imports
1 parent 57d9d02 commit 8a4b04f

File tree

9 files changed

+0
-10
lines changed

9 files changed

+0
-10
lines changed

pygccxml/binary_parsers/undname.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
import os
1919
import re
20-
import sys
2120
import ctypes
2221
from .. import declarations
2322

pygccxml/declarations/container_traits.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
defines few algorithms, that deals with different properties of std containers
88
"""
99

10-
import types
1110
import string
1211
from . import calldef
1312
from . import cpptypes

pygccxml/declarations/enumeration.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"""
99

1010
import copy
11-
import types
1211
from . import compilers
1312
from . import declaration
1413

pygccxml/declarations/matcher.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
"""Implements few "find" algorithms on declarations tree"""
77

8-
import types
98
from . import algorithm
109

1110

pygccxml/declarations/matchers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
import os
1212
import re
13-
import types
1413
from . import algorithm
1514
from . import variable
1615
from . import namespace

pygccxml/declarations/pattern_parser.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
"""implementation details"""
77

8-
import types
98
from .. import utils
109

1110

pygccxml/parser/linker.py

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

6-
import types
76
from pygccxml.declarations import *
87
from .. import utils
98

pygccxml/parser/scanner.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44
# See http://www.boost.org/LICENSE_1_0.txt
55

66
import os
7-
import types
87
import pprint
98
import xml.sax
10-
import warnings
119
import xml.sax.handler
1210
from pygccxml.declarations import *
1311
from .. import utils

pygccxml/parser/source_reader.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# See http://www.boost.org/LICENSE_1_0.txt
55

66
import os
7-
import sys
87
from . import linker
98
from . import config
109
from . import patcher

0 commit comments

Comments
 (0)