summaryrefslogtreecommitdiff
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-03-28 18:52:45 -0400
committerBenjamin Peterson <benjamin@python.org>2014-03-28 18:52:45 -0400
commit5ba16378f2629852f6d7a28bf76798c996649dfa (patch)
tree9e9fa4ed5c944045d2b1d898edcbd5691fd69cdc /Python/sysmodule.c
parentf696210fae37f3b5822cacf19142f41d4ae5c57d (diff)
downloadcpython-5ba16378f2629852f6d7a28bf76798c996649dfa.tar.gz
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 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;