diff options
author | Guido van Rossum <guido@python.org> | 1994-08-05 13:44:50 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-08-05 13:44:50 (GMT) |
commit | c65a525cdc9ce2e0af56e1a75deb877e935cee2f (patch) | |
tree | 3d9826ef689cd442f8906c2fed6b8eed008b4acc /Modules/Makefile.pre.in | |
parent | 781db5d0bb24889dbcd06203b38d4eb886d45f87 (diff) | |
download | cpython-c65a525cdc9ce2e0af56e1a75deb877e935cee2f.zip cpython-c65a525cdc9ce2e0af56e1a75deb877e935cee2f.tar.gz cpython-c65a525cdc9ce2e0af56e1a75deb877e935cee2f.tar.bz2 |
* Modules/{Setup.in,Makefile.pre.in}: renamed some modules to
shorter names (dropped the "module" from the name): sunaudiodev,
imgformat, audioop, imageop, imgfile
* Modules/stropmodule.c (strop_rindex): make rindex('abc', '') do
the right thing (i.e. return 3 instead of 0)
* Modules/socketmodule.c: disabled allowbroadcast() socket method
Diffstat (limited to 'Modules/Makefile.pre.in')
-rw-r--r-- | Modules/Makefile.pre.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in index 0b4fa5b..7ef0b0b 100644 --- a/Modules/Makefile.pre.in +++ b/Modules/Makefile.pre.in @@ -98,7 +98,7 @@ glmodule.c: $(srcdir)/cgen.py $(srcdir)/cstubs almodule.o: almodule.c arraymodule.o: arraymodule.c -audioopmodule.o: audioopmodule.c +audioop.o: audioop.c cdmodule.o: cdmodule.c clmodule.o: clmodule.c dbmmodule.o: dbmmodule.c @@ -106,8 +106,8 @@ fcntlmodule.o: fcntlmodule.c flmodule.o: flmodule.c fmmodule.o: fmmodule.c glmodule.o: glmodule.c -imageopmodule.o: imageopmodule.c -imgfilemodule.o: imgfilemodule.c +imageop.o: imageop.c +imgfile.o: imgfile.c mathmodule.o: mathmodule.c md5c.o: md5c.c md5module.o: md5module.c @@ -126,7 +126,7 @@ socketmodule.o: socketmodule.c stdwinmodule.o: stdwinmodule.c stropmodule.o: stropmodule.c structmodule.o: structmodule.c -sunaudiodevmodule.o: sunaudiodevmodule.c +sunaudiodev.o: sunaudiodev.c svmodule.o: svmodule.c threadmodule.o: threadmodule.c timemodule.o: timemodule.c |