From: Benjamin Peterson Date: Fri, 28 Mar 2014 22:52:45 +0000 (-0400) Subject: undefine SET_SYS_FROM_STRING_BORROW after its done being used (closes #21089) X-Git-Tag: v3.4.1rc1~167 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=938134394837f3cac1f8cbe3c3bf4f53c5ce0379;p=python undefine SET_SYS_FROM_STRING_BORROW after its done being used (closes #21089) --- diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 9ec3bfa07b..64de2bf258 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1799,6 +1799,7 @@ _PySys_Init(void) #endif #undef SET_SYS_FROM_STRING +#undef SET_SYS_FROM_STRING_BORROW if (PyErr_Occurred()) return NULL; return m;