Merge branch 'master' into blender2.8

This commit is contained in:
2018-09-13 16:35:09 +10:00

View File

@@ -642,7 +642,7 @@ def pyfunc2sphinx(ident, fw, module_name, type_name, identifier, py_func, is_cla
if type(py_func) == MethodType:
return
arg_str = inspect.formatargspec(*inspect.getfullargspec(py_func))
arg_str = str(inspect.signature(py_func))
if not is_class:
func_type = "function"