diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-11-02 04:04:57 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-11-02 04:04:57 +0000 |
commit | 2eb819f7a82c7eb61f2d253894d9973f0ec21df2 (patch) | |
tree | c881e371e6ae948cbd725afd91fa8f5b0c6c940f /Lib/_pyio.py | |
parent | Issue #25510: fileinput.FileInput.readline() now returns b'' instead of '' (diff) | |
parent | Issue #25523: Correct "a" article to "an" article (diff) | |
download | cpython-2eb819f7a82c7eb61f2d253894d9973f0ec21df2.tar.gz cpython-2eb819f7a82c7eb61f2d253894d9973f0ec21df2.tar.bz2 cpython-2eb819f7a82c7eb61f2d253894d9973f0ec21df2.zip |
Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5
Diffstat (limited to 'Lib/_pyio.py')
-rw-r--r-- | Lib/_pyio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_pyio.py b/Lib/_pyio.py index f47df91247d..37157d53ab4 100644 --- a/Lib/_pyio.py +++ b/Lib/_pyio.py @@ -2512,7 +2512,7 @@ class StringIO(TextIOWrapper): def __repr__(self): # TextIOWrapper tells the encoding in its repr. In StringIO, - # that's a implementation detail. + # that's an implementation detail. return object.__repr__(self) @property |