80 Preferences.getPython("Python3Extensions") + ['.rb'] |
80 Preferences.getPython("Python3Extensions") + ['.rb'] |
81 |
81 |
82 moduleDict = {} |
82 moduleDict = {} |
83 modules = [] |
83 modules = [] |
84 for ext in supportedExt: |
84 for ext in supportedExt: |
85 modules.extend(glob.glob(Utilities.normjoinpath(self.package, ext))) |
85 modules.extend(glob.glob( |
|
86 Utilities.normjoinpath(self.package, ext))) |
86 tot = len(modules) |
87 tot = len(modules) |
87 try: |
88 try: |
88 prog = 0 |
89 prog = 0 |
89 progress = QProgressDialog(self.trUtf8("Parsing modules..."), |
90 progress = QProgressDialog(self.trUtf8("Parsing modules..."), |
90 None, 0, tot, self.parent()) |
91 None, 0, tot, self.parent()) |