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:
Valentin
2020-09-30 20:09:02 +10:00
committed by Campbell Barton
parent c0a563ffe8
commit 5ac4778056
166 changed files with 268 additions and 270 deletions

View File

@@ -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); */

View File

@@ -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();

View File

@@ -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;
}

View File

@@ -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;
}

View File

@@ -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;
}

View File

@@ -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) {

View File

@@ -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;
}

View File

@@ -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;
}

View File

@@ -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;

View File

@@ -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;
}

View File

@@ -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;
}

View File

@@ -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;

View File

@@ -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;
}

View File

@@ -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 */

View File

@@ -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]));
}

View File

@@ -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 */