[Python-checkins] r69892 - python/branches/io-c/Lib/test/test_io.py

benjamin.peterson python-checkins at python.org
Mon Feb 23 00:32:15 CET 2009


Author: benjamin.peterson
Date: Mon Feb 23 00:32:15 2009
New Revision: 69892

Log:
help poor people like me to find their io tests (did I miss any?)

Modified:
   python/branches/io-c/Lib/test/test_io.py

Modified: python/branches/io-c/Lib/test/test_io.py
==============================================================================
--- python/branches/io-c/Lib/test/test_io.py	(original)
+++ python/branches/io-c/Lib/test/test_io.py	Mon Feb 23 00:32:15 2009
@@ -1,4 +1,12 @@
-"""Unit tests for io.py."""
+"""Unit tests for the io module."""
+
+# Tests of io are scattered over the test suite:
+# * test_bufio - tests file buffering
+# * test_memoryio - tests BytesIO and StringIO
+# * test_fileio - tests FileIO
+# * test_file - tests the file interface
+# * test_io - tests everything else in the io module
+# * test_univnewlines - tests universal newline support
 
 import os
 import sys


More information about the Python-checkins mailing list