summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-09-05 23:27:15 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-09-05 23:27:15 (GMT)
commit791dc2f32c3fb707319d0c8d93d6cde6175d1e01 (patch)
treeb6373a3456559c9127569319ae8e2e799e310d61 /Modules
parenta741ebf8a18b39e3b596707825f6e3026a5991fe (diff)
downloadcpython-791dc2f32c3fb707319d0c8d93d6cde6175d1e01.zip
cpython-791dc2f32c3fb707319d0c8d93d6cde6175d1e01.tar.gz
cpython-791dc2f32c3fb707319d0c8d93d6cde6175d1e01.tar.bz2
compile _bytesio and _stringio into the binary and initalize stdio before site fixing #3279
Reviewer: Alexandre Vassalotti
Diffstat (limited to 'Modules')
-rw-r--r--Modules/Setup.dist2
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/Setup.dist b/Modules/Setup.dist
index d2c8971..a2b20ca 100644
--- a/Modules/Setup.dist
+++ b/Modules/Setup.dist
@@ -113,6 +113,8 @@ _sre _sre.c # Fredrik Lundh's new regular expressions
_codecs _codecsmodule.c # access to the builtin codecs and codec registry
_fileio _fileio.c # Standard I/O baseline
_weakref _weakref.c # weak references
+_bytesio _bytesio.c # For Lib/io.py
+_stringio _stringio.c # For Lib/io.py
# The zipimport module is always imported at startup. Having it as a
# builtin module avoids some bootstrapping problems and reduces overhead.