mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Mark Hammond:
* 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.
This commit is contained in:
parent
7053b8a422
commit
a8ee4c31bf
2 changed files with 10 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue