]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
rename binasciimodule.c -> binascii.c; disable parsermodule.c
authorGuido van Rossum <guido@python.org>
Thu, 12 Oct 1995 00:41:40 +0000 (00:41 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 12 Oct 1995 00:41:40 +0000 (00:41 +0000)
Modules/Setup.in

index 2f37a294d15d1443776114acaabfaad084c70493..e7e74e63e435a96cdbaae8a415df483ad6c081a4 100644 (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: