summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-10-12 00:41:40 (GMT)
committerGuido van Rossum <guido@python.org>1995-10-12 00:41:40 (GMT)
commitb50667d2290d89d190cf00f804734dbb01d2fe21 (patch)
tree6f2f861d7c3c41ed9a4f9b6b505428f8f95e39c3 /Modules
parentbf032a97b9f28491e5afa54d44a395a9a08e6ee6 (diff)
downloadcpython-b50667d2290d89d190cf00f804734dbb01d2fe21.zip
cpython-b50667d2290d89d190cf00f804734dbb01d2fe21.tar.gz
cpython-b50667d2290d89d190cf00f804734dbb01d2fe21.tar.bz2
rename binasciimodule.c -> binascii.c; disable parsermodule.c
Diffstat (limited to 'Modules')
-rw-r--r--Modules/Setup.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in
index 2f37a29..e7e74e6 100644
--- a/Modules/Setup.in
+++ b/Modules/Setup.in
@@ -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: