diff options
author | fikotta <81991278+fikotta@users.noreply.github.com> | 2022-06-22 12:02:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-22 12:02:14 (GMT) |
commit | ca308c13daa722f3669a14f1613da768086beb6a (patch) | |
tree | 89ac22b4c1d72af46faf58e44892b664db2cd504 /Modules/_io | |
parent | dc8e1d0390e16e90b2f74f6bd6417324a357bc23 (diff) | |
download | cpython-ca308c13daa722f3669a14f1613da768086beb6a.zip cpython-ca308c13daa722f3669a14f1613da768086beb6a.tar.gz cpython-ca308c13daa722f3669a14f1613da768086beb6a.tar.bz2 |
Fix typo in _io.TextIOWrapper Clinic input (#94037)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Modules/_io')
-rw-r--r-- | Modules/_io/textio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_io/textio.c b/Modules/_io/textio.c index 3cbaca3..660396b 100644 --- a/Modules/_io/textio.c +++ b/Modules/_io/textio.c @@ -19,9 +19,9 @@ /*[clinic input] module _io class _io.IncrementalNewlineDecoder "nldecoder_object *" "&PyIncrementalNewlineDecoder_Type" -class _io.TextIOWrapper "textio *" "&TextIOWrapper_TYpe" +class _io.TextIOWrapper "textio *" "&TextIOWrapper_Type" [clinic start generated code]*/ -/*[clinic end generated code: output=da39a3ee5e6b4b0d input=2097a4fc85670c26]*/ +/*[clinic end generated code: output=da39a3ee5e6b4b0d input=ed072384f8aada2c]*/ /* TextIOBase */ |