diff options
author | Hynek Schlawack <hs@ox.cx> | 2012-11-07 09:07:22 +0100 |
---|---|---|
committer | Hynek Schlawack <hs@ox.cx> | 2012-11-07 09:07:22 +0100 |
commit | 03464ecbcf5a88f7cf8d895700f03e4088799cc4 (patch) | |
tree | ed54ebc1e16f9f606bb03fb02d0fb446cfcb17ac /Python/dynload_stub.c | |
parent | a35283195c8a126cf7f4bed558f8ee758023737d (diff) | |
parent | 49d34d665e6af4a37d2194bf677e9c7df27a7ebf (diff) | |
download | cpython-03464ecbcf5a88f7cf8d895700f03e4088799cc4.tar.gz |
Issue #15001: fix segfault on "del sys.module['__main__']"
Patch by Victor Stinner.
Diffstat (limited to 'Python/dynload_stub.c')
-rw-r--r-- | Python/dynload_stub.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Python/dynload_stub.c b/Python/dynload_stub.c index 69f8b450b3..59160483ca 100644 --- a/Python/dynload_stub.c +++ b/Python/dynload_stub.c @@ -6,6 +6,4 @@ #include "importdl.h" -const struct filedescr _PyImport_DynLoadFiletab[] = { - {0, 0} -}; +const char *_PyImport_DynLoadFiletab[] = {NULL}; |