mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Some weird symbol (M_I386) was used to decide whether to include the
audioop module; this was no longer defined. Use MS_WINDOWS instead. (I have a feeling that this was for the WATCOM port; too bad.)
This commit is contained in:
parent
d42e46ead5
commit
8f81a22d41
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ extern void initimp();
|
|||
struct _inittab _PyImport_Inittab[] = {
|
||||
|
||||
{"array", initarray},
|
||||
#ifdef M_I386
|
||||
#ifdef MS_WINDOWS
|
||||
{"audioop", initaudioop},
|
||||
#endif
|
||||
{"binascii", initbinascii},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue