diff options
author | Guido van Rossum <guido@python.org> | 1992-11-26 08:54:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-11-26 08:54:07 (GMT) |
commit | c89705d6975ffb1e4a3764f4f36bab339f969e8f (patch) | |
tree | b4e565a58d410ad3a60ffbe11f94c2567b14365d /Modules/config.c.in | |
parent | df9320f8bcad10431fa103459fcebd4b5430599a (diff) | |
download | cpython-c89705d6975ffb1e4a3764f4f36bab339f969e8f.zip cpython-c89705d6975ffb1e4a3764f4f36bab339f969e8f.tar.gz cpython-c89705d6975ffb1e4a3764f4f36bab339f969e8f.tar.bz2 |
* config.c: Added audioop to lists.
* Makefile: change default source directory
* socketmodule.c: added getsockname and getpeername
* bltinmodule.c: corrected typo in type() error message
* Added new built-in functions str() and repr(): repr(x) == `x`;
str(x) == x if x is a string, otherwise str(x) == repr(x).
* Added joinfields to stropmodule.c (string.join calls joinfields now)
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index b2ca0eb..7e67961 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -136,6 +136,9 @@ extern void initamoeba(); #ifdef USE_AUDIO extern void initaudio(); #endif +#ifdef USE_AUDIOOP +extern void initaudioop(); +#endif #ifdef USE_CD extern void initcd(); #endif @@ -242,6 +245,10 @@ struct { {"audio", initaudio}, #endif +#ifdef USE_AUDIOOP + {"audioop", initaudioop}, +#endif + #ifdef USE_CD {"cd", initcd}, #endif |