Merge branch 'blender-v2.90-release' into master

This commit is contained in:
2020-08-06 19:20:32 +10:00
4 changed files with 4 additions and 4 deletions

View File

@@ -383,7 +383,7 @@ void PyC_StackSpit(void)
}
}
void PyC_StackPrint(FILE *fp)
void PyC_StackPrint(/* FILE */ void *fp)
{
PyThreadState *tstate = PyGILState_GetThisThreadState();
if (tstate != NULL && tstate->frame != NULL) {

View File

@@ -28,7 +28,7 @@ void PyC_ObSpit(const char *name, PyObject *var);
void PyC_ObSpitStr(char *result, size_t result_len, PyObject *var);
void PyC_LineSpit(void);
void PyC_StackSpit(void);
void PyC_StackPrint(FILE *fp);
void PyC_StackPrint(/* FILE */ void *fp);
PyObject *PyC_ExceptionBuffer(void);
PyObject *PyC_ExceptionBuffer_Simple(void);
PyObject *PyC_Object_GetAttrStringArgs(PyObject *o, Py_ssize_t n, ...);