Issue 5682: Move _io module into its own subdirectory.

Reviewed by: Antoine Pitrou
This commit is contained in:
Alexandre Vassalotti 2009-04-04 19:58:40 +00:00
parent b4a49f69b0
commit 8d8d630003
14 changed files with 127 additions and 101 deletions

View file

@ -114,7 +114,7 @@ _codecs _codecsmodule.c # access to the builtin codecs and codec registry
_weakref _weakref.c # weak references
# Standard I/O baseline
_io io.c _iobase.c _fileio.c _bytesio.c _bufferedio.c _textio.c _stringio.c
_io -I$(srcdir)/Modules/_io _io/_iomodule.c _io/iobase.c _io/fileio.c _io/bytesio.c _io/bufferedio.c _io/textio.c _io/stringio.c
# The zipimport module is always imported at startup. Having it as a
# builtin module avoids some bootstrapping problems and reduces overhead.