diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-03-28 22:52:45 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-03-28 22:52:45 (GMT) |
commit | 938134394837f3cac1f8cbe3c3bf4f53c5ce0379 (patch) | |
tree | 2f43539eb42ae735de481cb5a1b00b95b50fd004 /Python/sysmodule.c | |
parent | 865bdbf4af88a32cab4d92709fad3c8ae7fb62d5 (diff) | |
download | cpython-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.c | 1 |
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; |