diff options
author | Eli Bendersky <eliben@gmail.com> | 2011-01-14 07:31:14 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2011-01-14 07:31:14 (GMT) |
commit | 07395914ca1e421544230c9fa618ce2314cfe266 (patch) | |
tree | 63882cce9f9fc93ecc3018ff190e53dadf46cba5 /Modules | |
parent | cc75a86123eba2fdf4e35227e14f8dbf4b67ac3b (diff) | |
download | cpython-07395914ca1e421544230c9fa618ce2314cfe266.zip cpython-07395914ca1e421544230c9fa618ce2314cfe266.tar.gz cpython-07395914ca1e421544230c9fa618ce2314cfe266.tar.bz2 |
Remove call to nonexisting function (relic from Python 2.x) under #ifdef __INSURE__. Issue 9844
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c index 0b656e5..fcd9330 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -720,7 +720,6 @@ Py_Main(int argc, wchar_t **argv) * trade off slower shutdown for less distraction in the memory * reports. -baw */ - _Py_ReleaseInternedStrings(); _Py_ReleaseInternedUnicodeStrings(); #endif /* __INSURE__ */ |