diff options
author | shadchin <shadchin@yandex-team.com> | 2024-05-25 20:17:30 +0300 |
---|---|---|
committer | shadchin <shadchin@yandex-team.com> | 2024-05-25 20:30:06 +0300 |
commit | 93dedde5f347af8bf358ce6a131662ed784220f4 (patch) | |
tree | c45b0e86a277eb835b420533acfc57321a1a6867 /contrib/tools/python3/Python/errors.c | |
parent | 981459b64021aeee8e80fbed0fd0d9b205adbd32 (diff) | |
download | ydb-93dedde5f347af8bf358ce6a131662ed784220f4.tar.gz |
Remove unnecessary patch
294af49eb80feb0cff89ea1de5cd9a8728bfbe89
Diffstat (limited to 'contrib/tools/python3/Python/errors.c')
-rw-r--r-- | contrib/tools/python3/Python/errors.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/contrib/tools/python3/Python/errors.c b/contrib/tools/python3/Python/errors.c index 68e740425b..6c46d1f213 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, |