* was using __members__ to get a list of attributes, has been deprecated in python for a while now. use a "__dir__" method instead. now dir() works for rna and operator types.
* added array support for bpyoperator doc generation
This commit is contained in:
@@ -27,9 +27,9 @@
|
||||
|
||||
#include <Python.h>
|
||||
|
||||
/* returns the python functions */
|
||||
PyObject *PYOP_wrap_add_func( void );
|
||||
PyObject *PYOP_wrap_remove_func( void );
|
||||
/* these are used for operator methods, used by bpy_operator.c */
|
||||
PyObject *PYOP_wrap_add(PyObject *self, PyObject *args);
|
||||
PyObject *PYOP_wrap_remove(PyObject *self, PyObject *args);
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user