[Python-checkins] cpython (3.4): undefine SET_SYS_FROM_STRING_BORROW after its done being used (closes #21089)

benjamin.peterson python-checkins at python.org
Fri Mar 28 23:55:30 CET 2014


http://hg.python.org/cpython/rev/c88a7c38eb0d
changeset:   90011:c88a7c38eb0d
branch:      3.4
parent:      90008:1f4daa805922
user:        Benjamin Peterson <benjamin at python.org>
date:        Fri Mar 28 18:52:45 2014 -0400
summary:
  undefine SET_SYS_FROM_STRING_BORROW after its done being used (closes #21089)

files:
  Python/sysmodule.c |  1 +
  1 files changed, 1 insertions(+), 0 deletions(-)


diff --git a/Python/sysmodule.c b/Python/sysmodule.c
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -1799,6 +1799,7 @@
 #endif
 
 #undef SET_SYS_FROM_STRING
+#undef SET_SYS_FROM_STRING_BORROW
     if (PyErr_Occurred())
         return NULL;
     return m;

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list