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/scenegraph.py')
-rw-r--r--intern/python/modules/vrml/scenegraph.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/intern/python/modules/vrml/scenegraph.py b/intern/python/modules/vrml/scenegraph.py
index 67c53dc3374..2f137b1e259 100644
--- a/intern/python/modules/vrml/scenegraph.py
+++ b/intern/python/modules/vrml/scenegraph.py
@@ -2,8 +2,7 @@
# Wed Oct 31 16:18:35 CET 2001
'''Prototype2 -- VRML 97 sceneGraph/Node/Script/ROUTE/IS implementations'''
-#import copy, types # extern
-import types # extern
+import copy, types # extern
import strop as string # builtin
from utils import typeclasses, err, namespace # XXX
## TODO: namespace must go
@@ -16,7 +15,7 @@ class baseProto:
passed arguments for the linearisation object
see lineariser4.Lineariser
'''
-# import lineariser4
+ import lineariser4
lineariser = apply( lineariser4.Lineariser, (), namedargs )
return apply( lineariser.linear, ( self, ), namedargs )