diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 13:06:09 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 13:06:09 (GMT) |
commit | c72e66a0489ee53aaf89c677c5b709d30b359532 (patch) | |
tree | daa871e7fdabf80f5da22dd1a5d3dc33b5efce52 /Lib/test/test_io.py | |
parent | a5ad9da50422a5ce2f80e05b816e74c0e004e247 (diff) | |
download | cpython-c72e66a0489ee53aaf89c677c5b709d30b359532.zip cpython-c72e66a0489ee53aaf89c677c5b709d30b359532.tar.gz cpython-c72e66a0489ee53aaf89c677c5b709d30b359532.tar.bz2 |
Issue #25523: Backported a-to-an corrections.
Diffstat (limited to 'Lib/test/test_io.py')
-rw-r--r-- | Lib/test/test_io.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index 252d5d8..34760c9 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -15,7 +15,7 @@ ################################################################################ # When writing tests for io, it's important to test both the C and Python # implementations. This is usually done by writing a base test that refers to -# the type it is testing as a attribute. Then it provides custom subclasses to +# the type it is testing as an attribute. Then it provides custom subclasses to # test both implementations. This file has lots of examples. ################################################################################ |