-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path__init__.py
45 lines (33 loc) · 1.06 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import inspect
import os
import sys
def reload_modules(user_path=None):
# Get the user path to clear out
if not user_path:
user_path = os.path.dirname(__file__).lower()
# loop over the modules and add ones belonging to this path to the
# delete list
to_delete = []
print('\n---')
for key, module in sys.modules.iteritems():
try:
# Get the path to the module
module_file_path = inspect.getfile(module).lower()
# Don't remove the startup script
if module_file_path == __file__.lower():
continue
# find modules in the user path and add them to delete
if module_file_path.startswith(user_path):
print('removing module: {}'.format(key))
to_delete.append(key)
except:
pass
# delete these modules
for module in to_delete:
del (sys.modules[module])
print('---\n')
def start():
reload_modules()
# start the main window
import mayaunittestui
mayaunittestui.show()