summaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/Python/errors.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/tools/python3/Python/errors.c')
-rw-r--r--contrib/tools/python3/Python/errors.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/contrib/tools/python3/Python/errors.c b/contrib/tools/python3/Python/errors.c
index 68e740425b6..6c46d1f2136 100644
--- a/contrib/tools/python3/Python/errors.c
+++ b/contrib/tools/python3/Python/errors.c
@@ -1265,11 +1265,6 @@ PyErr_NewException(const char *name, PyObject *base, PyObject *dict)
PyObject *bases = NULL;
PyObject *result = NULL;
-#if defined(__has_feature)
-# if __has_feature(memory_sanitizer)
- __msan_unpoison_string(name);
-# endif
-#endif
const char *dot = strrchr(name, '.');
if (dot == NULL) {
_PyErr_SetString(tstate, PyExc_SystemError,