Blender Git Loki
Git Commits -> Revision 39a526a
Revision 39a526a by Campbell Barton (master) June 16, 2007, 12:24 (GMT) |
Python PyMethodDef supports single argument methods (METH_O) but was using METH_VARARGS everywhere and getting the single args from the tuple. Use METH_O where applicable. |
Commit Details:
Full Hash: 39a526a963e9e0a0f206556a8b740fab56ba2654
SVN Revision: 10943
Parent Commit: 5135ed7
Lines Changed: +315, -378
28 Modified Paths:
/source/blender/python/api2_2x/Blender.c (+21, -20) (Diff)
/source/blender/python/api2_2x/bpy_data.c (+11, -25) (Diff)
/source/blender/python/api2_2x/Camera.c (+34, -34) (Diff)
/source/blender/python/api2_2x/Constraint.c (+10, -13) (Diff)
/source/blender/python/api2_2x/CurNurb.c (+14, -23) (Diff)
/source/blender/python/api2_2x/Draw.c (+2, -2) (Diff)
/source/blender/python/api2_2x/Font.c (+10, -13) (Diff)
/source/blender/python/api2_2x/gen_utils.c (+3, -3) (Diff)
/source/blender/python/api2_2x/gen_utils.h (+1, -1) (Diff)
/source/blender/python/api2_2x/Geometry.c (+8, -10) (Diff)
/source/blender/python/api2_2x/Group.c (+12, -18) (Diff)
/source/blender/python/api2_2x/IDProp.c (+8, -9) (Diff)
/source/blender/python/api2_2x/Image.c (+21, -31) (Diff)
/source/blender/python/api2_2x/Ipo.c (+12, -14) (Diff)
/source/blender/python/api2_2x/Ipocurve.c (+23, -32) (Diff)
/source/blender/python/api2_2x/Ipocurve.h (+2, -0) (Diff)
/source/blender/python/api2_2x/Lamp.c (+13, -13) (Diff)
/source/blender/python/api2_2x/Library.c (+22, -22) (Diff)
/source/blender/python/api2_2x/logic.c (+15, -15) (Diff)
/source/blender/python/api2_2x/Material.c (+9, -13) (Diff)
/source/blender/python/api2_2x/Mathutils.c (+5, -6) (Diff)
/source/blender/python/api2_2x/Mathutils.h (+1, -1) (Diff)
/source/blender/python/api2_2x/Mesh.c (+39, -40) (Diff)
/source/blender/python/api2_2x/Metaball.c (+3, -4) (Diff)
/source/blender/python/api2_2x/Object.c (+4, -4) (Diff)
/source/blender/python/api2_2x/Scene.c (+4, -4) (Diff)
/source/blender/python/api2_2x/Text3d.c (+4, -4) (Diff)
/source/blender/python/api2_2x/World.c (+4, -4) (Diff)
/source/blender/python/api2_2x/bpy_data.c (+11, -25) (Diff)
/source/blender/python/api2_2x/Camera.c (+34, -34) (Diff)
/source/blender/python/api2_2x/Constraint.c (+10, -13) (Diff)
/source/blender/python/api2_2x/CurNurb.c (+14, -23) (Diff)
/source/blender/python/api2_2x/Draw.c (+2, -2) (Diff)
/source/blender/python/api2_2x/Font.c (+10, -13) (Diff)
/source/blender/python/api2_2x/gen_utils.c (+3, -3) (Diff)
/source/blender/python/api2_2x/gen_utils.h (+1, -1) (Diff)
/source/blender/python/api2_2x/Geometry.c (+8, -10) (Diff)
/source/blender/python/api2_2x/Group.c (+12, -18) (Diff)
/source/blender/python/api2_2x/IDProp.c (+8, -9) (Diff)
/source/blender/python/api2_2x/Image.c (+21, -31) (Diff)
/source/blender/python/api2_2x/Ipo.c (+12, -14) (Diff)
/source/blender/python/api2_2x/Ipocurve.c (+23, -32) (Diff)
/source/blender/python/api2_2x/Ipocurve.h (+2, -0) (Diff)
/source/blender/python/api2_2x/Lamp.c (+13, -13) (Diff)
/source/blender/python/api2_2x/Library.c (+22, -22) (Diff)
/source/blender/python/api2_2x/logic.c (+15, -15) (Diff)
/source/blender/python/api2_2x/Material.c (+9, -13) (Diff)
/source/blender/python/api2_2x/Mathutils.c (+5, -6) (Diff)
/source/blender/python/api2_2x/Mathutils.h (+1, -1) (Diff)
/source/blender/python/api2_2x/Mesh.c (+39, -40) (Diff)
/source/blender/python/api2_2x/Metaball.c (+3, -4) (Diff)
/source/blender/python/api2_2x/Object.c (+4, -4) (Diff)
/source/blender/python/api2_2x/Scene.c (+4, -4) (Diff)
/source/blender/python/api2_2x/Text3d.c (+4, -4) (Diff)
/source/blender/python/api2_2x/World.c (+4, -4) (Diff)