remove python api cruft from custom operator registration

This commit is contained in:
2009-12-30 22:51:44 +00:00
parent 26de5e5f2b
commit 453945e9e3
6 changed files with 0 additions and 652 deletions

View File

@@ -22,7 +22,6 @@
from _bpy import ops as ops_module
# op_add = ops_module.add
op_remove = ops_module.remove
op_dir = ops_module.dir
op_call = ops_module.call
op_as_string = ops_module.as_string
@@ -56,9 +55,6 @@ class bpy_ops(object):
raise AttributeError(module)
return bpy_ops_submodule(module)
def remove(self, pyop):
op_remove(pyop)
def __dir__(self):
submodules = set()