diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-02-23 21:51:05 -0500 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-02-23 21:51:05 -0500 |
commit | 67bfe8075822b226793ce672751329dd658af9af (patch) | |
tree | 49abcce706c2ce732e04afb9805ea550b4692f2e /Misc | |
parent | Revert "Issue #16121: Fix line number accounting in shlex" (diff) | |
download | cpython-67bfe8075822b226793ce672751329dd658af9af.tar.gz cpython-67bfe8075822b226793ce672751329dd658af9af.tar.bz2 cpython-67bfe8075822b226793ce672751329dd658af9af.zip |
#17275: Fix class name in init errors in C bufferedio classes.
This fixes an apparent copy-and-paste error.
Patch by Manuel Jacob.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS index 39195ef665c..8fbf9d083dc 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -505,6 +505,7 @@ Atsuo Ishimoto Adam Jackson Ben Jackson Paul Jackson +Manuel Jacob David Jacobs Kevin Jacobs Kjetil Jacobsen diff --git a/Misc/NEWS b/Misc/NEWS index c4a89f0713a..eb30662d8d3 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,9 @@ What's New in Python 3.2.4 Core and Builtins ----------------- +- Issue #17275: Corrected class name in init error messages of the C version of + BufferedWriter and BufferedRandom. + - Issue #7963: Fixed misleading error message that issued when object is called without arguments. |