Cleanup: convert gforge task ID's to phabricator format
Cleanup old tracker task format to the new. e.g: [#34039] to T34039 Ref D8718
This commit is contained in:
@@ -916,7 +916,7 @@ void PyC_SetHomePath(const char *py_path_bundle)
|
||||
{
|
||||
wchar_t py_path_bundle_wchar[1024];
|
||||
|
||||
/* Can't use this, on linux gives bug: #23018,
|
||||
/* Can't use this, on linux gives bug: T23018,
|
||||
* TODO: try LANG="en_US.UTF-8" /usr/bin/blender, suggested 2008 */
|
||||
/* mbstowcs(py_path_bundle_wchar, py_path_bundle, FILE_MAXDIR); */
|
||||
|
||||
|
@@ -170,7 +170,7 @@ static PyObject *make_app_info(void)
|
||||
SetObjItem(PyBool_FromLong(G.factory_startup));
|
||||
|
||||
/* build info, use bytes since we can't assume _any_ encoding:
|
||||
* see patch [#30154] for issue */
|
||||
* see patch T30154 for issue */
|
||||
#ifdef BUILD_DATE
|
||||
SetBytesItem(build_date);
|
||||
SetBytesItem(build_time);
|
||||
@@ -532,7 +532,7 @@ PyObject *BPY_app_struct(void)
|
||||
BlenderAppType.tp_init = NULL;
|
||||
BlenderAppType.tp_new = NULL;
|
||||
BlenderAppType.tp_hash = (hashfunc)
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) [#29635] */
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) T29635. */
|
||||
|
||||
/* kindof a hack ontop of PyStructSequence */
|
||||
py_struct_seq_getset_init();
|
||||
|
@@ -100,7 +100,7 @@ PyObject *BPY_app_alembic_struct(void)
|
||||
BlenderAppABCType.tp_init = NULL;
|
||||
BlenderAppABCType.tp_new = NULL;
|
||||
BlenderAppABCType.tp_hash = (hashfunc)
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) [#29635] */
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) T29635. */
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@@ -306,7 +306,7 @@ PyObject *BPY_app_build_options_struct(void)
|
||||
BlenderAppBuildOptionsType.tp_init = NULL;
|
||||
BlenderAppBuildOptionsType.tp_new = NULL;
|
||||
BlenderAppBuildOptionsType.tp_hash = (hashfunc)
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) [#29635] */
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) T29635. */
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@@ -140,7 +140,7 @@ PyObject *BPY_app_ffmpeg_struct(void)
|
||||
BlenderAppFFmpegType.tp_init = NULL;
|
||||
BlenderAppFFmpegType.tp_new = NULL;
|
||||
BlenderAppFFmpegType.tp_hash = (hashfunc)
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) [#29635] */
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) T29635. */
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@@ -232,7 +232,7 @@ PyObject *BPY_app_handlers_struct(void)
|
||||
BlenderAppCbType.tp_init = NULL;
|
||||
BlenderAppCbType.tp_new = NULL;
|
||||
BlenderAppCbType.tp_hash = (hashfunc)
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) [#29635] */
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) T29635. */
|
||||
|
||||
/* assign the C callbacks */
|
||||
if (ret) {
|
||||
|
@@ -104,7 +104,7 @@ PyObject *BPY_app_ocio_struct(void)
|
||||
BlenderAppOCIOType.tp_init = NULL;
|
||||
BlenderAppOCIOType.tp_new = NULL;
|
||||
BlenderAppOCIOType.tp_hash = (hashfunc)
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) [#29635] */
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) T29635. */
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@@ -100,7 +100,7 @@ PyObject *BPY_app_oiio_struct(void)
|
||||
BlenderAppOIIOType.tp_init = NULL;
|
||||
BlenderAppOIIOType.tp_new = NULL;
|
||||
BlenderAppOIIOType.tp_hash = (hashfunc)
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) [#29635] */
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) T29635. */
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@@ -96,7 +96,7 @@ PyObject *BPY_app_opensubdiv_struct(void)
|
||||
/* prevent user from creating new instances */
|
||||
BlenderAppOpenSubdivType.tp_init = NULL;
|
||||
BlenderAppOpenSubdivType.tp_new = NULL;
|
||||
/* without this we can't do set(sys.modules) [#29635] */
|
||||
/* without this we can't do set(sys.modules) T29635. */
|
||||
BlenderAppOpenSubdivType.tp_hash = (hashfunc)_Py_HashPointer;
|
||||
|
||||
return ret;
|
||||
|
@@ -104,7 +104,7 @@ PyObject *BPY_app_openvdb_struct(void)
|
||||
BlenderAppOVDBType.tp_init = NULL;
|
||||
BlenderAppOVDBType.tp_new = NULL;
|
||||
BlenderAppOVDBType.tp_hash = (hashfunc)
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) [#29635] */
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) T29635. */
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@@ -137,7 +137,7 @@ PyObject *BPY_app_sdl_struct(void)
|
||||
BlenderAppSDLType.tp_init = NULL;
|
||||
BlenderAppSDLType.tp_new = NULL;
|
||||
BlenderAppSDLType.tp_hash = (hashfunc)
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) [#29635] */
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) T29635. */
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@@ -896,7 +896,7 @@ PyObject *BPY_app_translations_struct(void)
|
||||
|
||||
/* prevent user from creating new instances */
|
||||
BlenderAppTranslationsType.tp_new = NULL;
|
||||
/* without this we can't do set(sys.modules) [#29635] */
|
||||
/* without this we can't do set(sys.modules) T29635. */
|
||||
BlenderAppTranslationsType.tp_hash = (hashfunc)_Py_HashPointer;
|
||||
|
||||
return ret;
|
||||
|
@@ -101,7 +101,7 @@ PyObject *BPY_app_usd_struct(void)
|
||||
BlenderAppUSDType.tp_init = NULL;
|
||||
BlenderAppUSDType.tp_new = NULL;
|
||||
BlenderAppUSDType.tp_hash = (hashfunc)
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) [#29635] */
|
||||
_Py_HashPointer; /* without this we can't do set(sys.modules) T29635. */
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@@ -494,7 +494,7 @@ float BPY_driver_exec(struct PathResolvedRNA *anim_rna,
|
||||
}
|
||||
|
||||
/* needed since drivers are updated directly after undo where 'main' is
|
||||
* re-allocated [#28807] */
|
||||
* re-allocated T28807. */
|
||||
BPY_update_rna_module();
|
||||
|
||||
/* init global dictionary for py-driver evaluation settings */
|
||||
|
@@ -340,7 +340,7 @@ void BPY_python_start(int argc, const char **argv)
|
||||
int i;
|
||||
PyObject *py_argv = PyList_New(argc);
|
||||
for (i = 0; i < argc; i++) {
|
||||
/* should fix bug #20021 - utf path name problems, by replacing
|
||||
/* should fix bug T20021 - utf path name problems, by replacing
|
||||
* PyUnicode_FromString, with this one */
|
||||
PyList_SET_ITEM(py_argv, i, PyC_UnicodeFromByte(argv[i]));
|
||||
}
|
||||
|
@@ -2492,7 +2492,7 @@ static int Vector_swizzle_set(VectorObject *self, PyObject *value, void *closure
|
||||
swizzleClosure = POINTER_AS_INT(closure);
|
||||
|
||||
/* We must first copy current vec into tvec, else some org values may be lost.
|
||||
* See [#31760].
|
||||
* See T31760.
|
||||
* Assuming self->size can't be higher than MAX_DIMENSIONS! */
|
||||
memcpy(tvec, self->vec, self->size * sizeof(float));
|
||||
|
||||
@@ -2504,7 +2504,7 @@ static int Vector_swizzle_set(VectorObject *self, PyObject *value, void *closure
|
||||
}
|
||||
|
||||
/* We must copy back the whole tvec into vec, else some changes may be lost (e.g. xz...).
|
||||
* See [#31760]. */
|
||||
* See T31760. */
|
||||
memcpy(self->vec, tvec, self->size * sizeof(float));
|
||||
/* continue with BaseMathObject_WriteCallback at the end */
|
||||
|
||||
|
Reference in New Issue
Block a user