]> granicus.if.org Git - python/commitdiff
Mark Hammond:
authorGuido van Rossum <guido@python.org>
Fri, 21 Apr 2000 21:26:43 +0000 (21:26 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 21 Apr 2000 21:26:43 +0000 (21:26 +0000)
* Base address for all extension modules updated. PC\dllbase_nt.txt
also updated.  Erroneous "libpath" directory removed for all
projects.

* winsound module moved from a builtin module to an extension
module.  This was done primarily to avoid Python16.dll needing to
pull in winmm.dll.  Really dumb test added for winsound - but if
nothing else it ensures the module imports.

PC/config.c
PC/dllbase_nt.txt

index cd178577bd9f0215d508351e5ef9032487083538..0295c1f0d0b1c95b0f113a53c8a92320e6eadf66 100644 (file)
@@ -61,7 +61,6 @@ extern void initcPickle();
 extern void initpcre();
 #ifdef WIN32
 extern void initmsvcrt();
-extern void initwinsound();
 extern void init_locale();
 #endif
 extern void init_codecs();
@@ -102,7 +101,6 @@ struct _inittab _PyImport_Inittab[] = {
         {"pcre", initpcre},
 #ifdef WIN32
        {"msvcrt", initmsvcrt},
-       {"winsound", initwinsound},
        {"_locale", init_locale},
 #endif
 
index 7ac552b0a4af4cd42d383b56a40ed0ff62359bfe..11da19d887fe51589aab84717bba19a4197f7f27 100644 (file)
@@ -13,12 +13,21 @@ command line switch.
 
 
 Python.dll                 - 1e100000 - 1e180000 (-1)
-Standard Extension Modules 1e180000 - 1e200000  ""
+Standard Extension Modules 1e180000 - 1e200000  ""
  - bsddb                     1e180000 - 1e188000  ""
  - _tkinter                  1e190000 - 1e1A0000
  - parser                    1e1A0000 - 1e1B0000
  - zlib                      1e1B0000 - 1e1C0000
  - winreg                    1e1C0000 - 1e1D0000
+ - _socket                   1e1D0000 - 1e1E0000
+ - _sre                      1e1E0000 - 1e1F0000
+ - mmap                      1e1F0000 - 1e1FFFFF
+
+More standard extensions 1D100000 - 1e000000
+ - pyexpat                   1D100000 - 1D110000
+ - select                    1D110000 - 1D120000
+ - unicodedata               1D120000 - 1D130000
+ - winsound                  1D130000 - 1D140000
 
 Other extension modules
  - win32api                  1e200000 - 1e220000