summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-03-28 22:52:45 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-03-28 22:52:45 (GMT)
commit938134394837f3cac1f8cbe3c3bf4f53c5ce0379 (patch)
tree2f43539eb42ae735de481cb5a1b00b95b50fd004 /Python/sysmodule.c
parent865bdbf4af88a32cab4d92709fad3c8ae7fb62d5 (diff)
downloadcpython-938134394837f3cac1f8cbe3c3bf4f53c5ce0379.zip
cpython-938134394837f3cac1f8cbe3c3bf4f53c5ce0379.tar.gz
cpython-938134394837f3cac1f8cbe3c3bf4f53c5ce0379.tar.bz2
undefine SET_SYS_FROM_STRING_BORROW after its done being used (closes #21089)
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c1
1 files changed, 1 insertions, 0 deletions
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;