Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/python/modules/vrml/utils/collapse.py')
-rw-r--r--intern/python/modules/vrml/utils/collapse.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/intern/python/modules/vrml/utils/collapse.py b/intern/python/modules/vrml/utils/collapse.py
index a612f7f4311..25da50c2adb 100644
--- a/intern/python/modules/vrml/utils/collapse.py
+++ b/intern/python/modules/vrml/utils/collapse.py
@@ -11,8 +11,7 @@ Destructive Functions for "collapsing" Sequences into single levels
[1, 2, 3, 4, 5, 6] # note is the same root list
'''
-#import copy, types, sys
-import types, sys
+import copy, types, sys
from types import ListType, TupleType # this now only supports the obsolete stuff...
def hyperCollapse( inlist, allowedmap, type=type, list=list, itype=types.InstanceType, maxint= sys.maxint):