rename binasciimodule.c -> binascii.c; disable parsermodule.c

This commit is contained in:
Guido van Rossum 1995-10-12 00:41:40 +00:00
parent bf032a97b9
commit b50667d229
1 changed files with 6 additions and 2 deletions

View File

@ -100,7 +100,6 @@ signal signalmodule.c # signal(2)
array arraymodule.c # array objects
math mathmodule.c -lm # math library functions, e.g. sin()
parser parsermodule.c # Fred Drake's interface to the Python parser
regex regexmodule.c regexpr.c # Regular expressions, GNU Emacs style
strop stropmodule.c # fast string operations implemented in C
struct structmodule.c # binary structure packing/unpacking
@ -307,7 +306,12 @@ rotor rotormodule.c # enigma-inspired encryption
#objc.c
# Helper module for various ascii-encoders
binascii binasciimodule.c
binascii binascii.c
# Fred Drake's interface to the Python parser.
# (Not enabled by default because it is big and doesn't compile with
# cc on SunOS 4.1.3)
#parser parsermodule.c
# Example -- included for reference only: