From 4c7dc3e5c5423ec20ca69841e49718fbae02a22d Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 13 Nov 2009 09:28:05 +0000 Subject: changes python initialization - bpy is now a python package, this makes it easier to add utility modules and adjust python startup which was previously using verbose Py/C api. Access should not be any slower since both C and Python modules use dictionary access. - loop over scripts and load via python (currently F8 reload isnt working, will add back shortly) - the C module is kept but renamed to _bpy and not meant for direct access from anything but the bpy package. - bpy_types.py is an exception since it runs before the bpy package is initialized. --- source/blender/python/intern/stubs.c | 1 - 1 file changed, 1 deletion(-) (limited to 'source/blender/python/intern/stubs.c') diff --git a/source/blender/python/intern/stubs.c b/source/blender/python/intern/stubs.c index 94bdb6ba6ab..303fd84ee60 100644 --- a/source/blender/python/intern/stubs.c +++ b/source/blender/python/intern/stubs.c @@ -27,7 +27,6 @@ */ /* python, will come back */ -void BPY_post_start_python() {} //void BPY_run_python_script() {} //void BPY_start_python() {} void BPY_call_importloader() {} -- cgit v1.2.3