summaryrefslogtreecommitdiffstats
path: root/Python/dynload_win.c
diff options
context:
space:
mode:
authorKristján Valur Jónsson <kristjan@ccpgames.com>2007-04-21 12:46:49 (GMT)
committerKristján Valur Jónsson <kristjan@ccpgames.com>2007-04-21 12:46:49 (GMT)
commit5e4e31f76a18e45d88a24ce7b6efc07e420d805b (patch)
tree211ba4a724778fd6fa44d8e092ad6c34bb37de5f /Python/dynload_win.c
parent8ff1f6a69e967951fb4de3049fbb847aacc901c8 (diff)
downloadcpython-5e4e31f76a18e45d88a24ce7b6efc07e420d805b.zip
cpython-5e4e31f76a18e45d88a24ce7b6efc07e420d805b.tar.gz
cpython-5e4e31f76a18e45d88a24ce7b6efc07e420d805b.tar.bz2
Fix various minor issues discovered with static analysis using Visual Studio 2005 Team System.
Removed obsolete comment, since .dll modules are no longer supported on windows, only .pyd.
Diffstat (limited to 'Python/dynload_win.c')
-rw-r--r--Python/dynload_win.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/Python/dynload_win.c b/Python/dynload_win.c
index 37d6d2e..1c3b3ab 100644
--- a/Python/dynload_win.c
+++ b/Python/dynload_win.c
@@ -13,16 +13,8 @@
const struct filedescr _PyImport_DynLoadFiletab[] = {
#ifdef _DEBUG
{"_d.pyd", "rb", C_EXTENSION},
- /* Temporarily disable .dll, to avoid conflicts between sqlite3.dll
- and the sqlite3 package. If this needs to be reverted for 2.5,
- some other solution for the naming conflict must be found.
- {"_d.dll", "rb", C_EXTENSION},
- */
#else
{".pyd", "rb", C_EXTENSION},
- /* Likewise
- {".dll", "rb", C_EXTENSION},
- */
#endif
{0, 0}
};