Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-12-09 07:25:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-12-09 07:29:28 +0300
commitd1cedf53faaf11de74ca7c88da207e16ae01c497 (patch)
tree35e3ea430b44fe4e79dd67d684a7edd267f4ac05 /source/blender/python/generic/idprop_py_api.c
parentcdfe733e7061d32882824896c7e62823447d7c94 (diff)
Revert "Fix T78823: Slash in custom property name does not work"
This reverts commit cbae82ba960a0baaae6437b176a310f078ce07d8. This change introduced the following problems: - We could no longer reliably duplicate or use an existing custom property names. - We could no longer assume a bone or ID name can be used in a custom-property. - Importers that support custom properties (such as FBX) could fail with an exception creating custom properties.
Diffstat (limited to 'source/blender/python/generic/idprop_py_api.c')
-rw-r--r--source/blender/python/generic/idprop_py_api.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/python/generic/idprop_py_api.c b/source/blender/python/generic/idprop_py_api.c
index a8b66f3f2fe..1a7a0ecc6d7 100644
--- a/source/blender/python/generic/idprop_py_api.c
+++ b/source/blender/python/generic/idprop_py_api.c
@@ -20,8 +20,6 @@
#include <Python.h>
-#include <string.h>
-
#include "MEM_guardedalloc.h"
#include "BLI_utildefines.h"
@@ -372,11 +370,6 @@ static const char *idp_try_read_name(PyObject *name_obj)
"the length of IDProperty names is limited to 63 characters");
return NULL;
}
-
- if (strchr(name, '\"') || strchr(name, '\\') || strchr(name, '\'')) {
- PyErr_SetString(PyExc_KeyError, "IDProperty names cannot include \", \\, or \'");
- return NULL;
- }
}
else {
name = "";