[Python-checkins] r55702 - python/branches/cpy_merge/setup.py

alexandre.vassalotti python-checkins at python.org
Thu May 31 01:47:58 CEST 2007


Author: alexandre.vassalotti
Date: Thu May 31 01:47:36 2007
New Revision: 55702

Modified:
   python/branches/cpy_merge/setup.py
Log:
Add _string_io to setup.py
Add a temporary unit test for _string_io.


Modified: python/branches/cpy_merge/setup.py
==============================================================================
--- python/branches/cpy_merge/setup.py	(original)
+++ python/branches/cpy_merge/setup.py	Thu May 31 01:47:36 2007
@@ -472,8 +472,9 @@
         exts.append( Extension('cStringIO', ['cStringIO.c']) )
         exts.append( Extension('cPickle', ['cPickle.c']) )
 
-        # Fast implementation of BytesIO
+        # Fast implementation of BytesIO and StringIO
         exts.append( Extension('_bytes_io', ['_bytes_iomodule.c']) )
+        exts.append( Extension('_string_io', ['_string_iomodule.c']) )
 
         # Memory-mapped files (also works on Win32).
         if platform not in ['atheos', 'mac']:


More information about the Python-checkins mailing list