diff options
author | Jesus Cea <jcea@jcea.es> | 2012-10-05 00:11:36 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2012-10-05 00:11:36 (GMT) |
commit | 14c81aba509904959a86f14ccd180f714e6b753d (patch) | |
tree | 62c6d922cd4ae226c2e076b5d3ab81c7c5d24cb5 /Modules/_dbmmodule.c | |
parent | ab70e2ab3264c444ac70a1c98e869b0de0b22c4a (diff) | |
download | cpython-14c81aba509904959a86f14ccd180f714e6b753d.zip cpython-14c81aba509904959a86f14ccd180f714e6b753d.tar.gz cpython-14c81aba509904959a86f14ccd180f714e6b753d.tar.bz2 |
#16135: Removal of OS/2 support (Modules/*)
Diffstat (limited to 'Modules/_dbmmodule.c')
-rw-r--r-- | Modules/_dbmmodule.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Modules/_dbmmodule.c b/Modules/_dbmmodule.c index 327b873..1ce85f5 100644 --- a/Modules/_dbmmodule.c +++ b/Modules/_dbmmodule.c @@ -14,11 +14,7 @@ */ #if defined(HAVE_NDBM_H) #include <ndbm.h> -#if defined(PYOS_OS2) && !defined(PYCC_GCC) -static char *which_dbm = "ndbm"; -#else static char *which_dbm = "GNU gdbm"; /* EMX port of GDBM */ -#endif #elif defined(HAVE_GDBM_NDBM_H) #include <gdbm/ndbm.h> static char *which_dbm = "GNU gdbm"; |