From a4793a3b4ac298a651f7bab0bafd809287647509 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 13 Mar 2009 07:50:07 +0000 Subject: 2.5 Python api - rearranged modules bpyui -> bpy.ui, bpy -> bpy.data, remove bpydoc - new module bpy.types, stores a list of all struct types - added __rna__ attribute to types - eg bpy.types.World.__rna__ so you can access the rna data from a type. (so bpydoc.structs isnt needed anymore) - removed unused subtyping method (use python subclassing rather then C PyTypeObject) --- source/blender/python/rna_dump.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python/rna_dump.py') diff --git a/source/blender/python/rna_dump.py b/source/blender/python/rna_dump.py index 826051d9ceb..f587cd983b2 100644 --- a/source/blender/python/rna_dump.py +++ b/source/blender/python/rna_dump.py @@ -104,7 +104,7 @@ def seek(r, txt): seek(r[i], newtxt) #print (dir(bpy)) -seek(bpy, 'bpy') +seek(bpy.data, 'bpy.data') #print dir(bpy) -- cgit v1.2.3