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:
authorWillian Padovani Germano <wpgermano@gmail.com>2004-01-15 06:46:47 +0300
committerWillian Padovani Germano <wpgermano@gmail.com>2004-01-15 06:46:47 +0300
commit39714fe42c195c45d8dbeb424edc4f7c8bc46fb4 (patch)
tree0318aefebbb737632748e7dd3a19b2a43a0e0505 /source/blender/python/api2_2x/Registry.c
parentf9ed7f0f889880c56b2bdfacc598ad42d0d4dc3e (diff)
BPython:
- some fixes for menu and error reporting code.
Diffstat (limited to 'source/blender/python/api2_2x/Registry.c')
-rw-r--r--source/blender/python/api2_2x/Registry.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/python/api2_2x/Registry.c b/source/blender/python/api2_2x/Registry.c
index 1fc517c219f..c330d93fc68 100644
--- a/source/blender/python/api2_2x/Registry.c
+++ b/source/blender/python/api2_2x/Registry.c
@@ -99,8 +99,6 @@ static PyObject *M_Registry_SetKey (PyObject *self, PyObject *args)
return EXPP_ReturnPyObjError (PyExc_AttributeError,
"expected a string and a dictionary");
- printf("dict size: %d", sizeof(*pydict)); /* debug XXX */
-
if (PyDict_SetItem (bpy_registryDict, pystr, pydict)) /* 0 on success */
return EXPP_ReturnPyObjError (PyExc_RuntimeError,
"Registry_SetKey: couldn't update the Registry dict");
@@ -145,4 +143,3 @@ PyObject *Registry_Init (void)
return submodule;
}
-