From 938134394837f3cac1f8cbe3c3bf4f53c5ce0379 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 28 Mar 2014 18:52:45 -0400 Subject: undefine SET_SYS_FROM_STRING_BORROW after its done being used (closes #21089) --- Python/sysmodule.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 9ec3bfa..64de2bf 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; -- cgit v0.12