[Python-checkins] r54948 - python/trunk/Python/dynload_win.c

kristjan.jonsson python-checkins at python.org
Wed Apr 25 02:19:30 CEST 2007


Author: kristjan.jonsson
Date: Wed Apr 25 02:19:26 2007
New Revision: 54948

Modified:
   python/trunk/Python/dynload_win.c
Log:
Remove obsolete comment. Importing of .dll files has been discontinued, only .pyd files supported on windows now.

Modified: python/trunk/Python/dynload_win.c
==============================================================================
--- python/trunk/Python/dynload_win.c	(original)
+++ python/trunk/Python/dynload_win.c	Wed Apr 25 02:19:26 2007
@@ -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}
 };


More information about the Python-checkins mailing list