We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f7e633 commit e55f7deCopy full SHA for e55f7de
unittests/misc/test_performance.py
@@ -8,15 +8,16 @@
8
import time
9
import hotshot
10
import hotshot.stats
11
-from pygccxml import parser
12
-from pygccxml import declarations
13
14
this_module_dir_path = os.path.abspath(
15
os.path.dirname(sys.modules[__name__].__file__))
16
17
-sys.path.insert(1, os.path.join(this_module_dir_path, '../'))
+sys.path.insert(1, os.path.join(this_module_dir_path, '../../'))
+sys.path.insert(2, os.path.join(this_module_dir_path, '../'))
18
19
-import autoconfig # nopep8
+import autoconfig # nopep8
+from pygccxml import parser # nopep8
20
+from pygccxml import declarations # nopep8
21
22
dcache_file_name = os.path.join(autoconfig.data_directory, 'pygccxml.cache')
23
if os.path.exists(dcache_file_name):
0 commit comments