diff options
author | Guido van Rossum <guido@python.org> | 2007-05-24 17:45:19 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-05-24 17:45:19 (GMT) |
commit | 78c1c4d49f47e248c9ea6f326612b2378e352c61 (patch) | |
tree | d38a0369f661b3b708154ce9446aeb45a446d8bc /Modules/Setup.dist | |
parent | 9e4dc911ea0d62b9d7a3b2e6151cc9568246adb7 (diff) | |
download | cpython-78c1c4d49f47e248c9ea6f326612b2378e352c61.zip cpython-78c1c4d49f47e248c9ea6f326612b2378e352c61.tar.gz cpython-78c1c4d49f47e248c9ea6f326612b2378e352c61.tar.bz2 |
Link _fileio statically -- it is needed during initialization.
Diffstat (limited to 'Modules/Setup.dist')
-rw-r--r-- | Modules/Setup.dist | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/Setup.dist b/Modules/Setup.dist index 7e098a8..6a7a54d 100644 --- a/Modules/Setup.dist +++ b/Modules/Setup.dist @@ -115,6 +115,7 @@ pwd pwdmodule.c # this is needed to find out the user's home dir # if $HOME is not set _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 # The zipimport module is always imported at startup. Having it as a # builtin module avoids some bootstrapping problems and reduces overhead. |