[issue31722] _io.IncrementalNewlineDecoder doesn't inherit codecs.IncrementalDecoder

2019-10-08 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue31722] _io.IncrementalNewlineDecoder doesn't inherit codecs.IncrementalDecoder

2019-10-08 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +16247 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/16664 ___ Python tracker ___ __

[issue31722] _io.IncrementalNewlineDecoder doesn't inherit codecs.IncrementalDecoder

2018-10-23 Thread Xiang Zhang
Xiang Zhang added the comment: Just find the same problem while investigating io. -- nosy: +xiang.zhang stage: patch review -> needs patch versions: +Python 3.8 ___ Python tracker ___

[issue31722] _io.IncrementalNewlineDecoder doesn't inherit codecs.IncrementalDecoder

2017-10-10 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: -3918 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue31722] _io.IncrementalNewlineDecoder doesn't inherit codecs.IncrementalDecoder

2017-10-10 Thread Oren Milman
Change by Oren Milman : -- keywords: +patch pull_requests: +3918 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue31722] _io.IncrementalNewlineDecoder doesn't inherit codecs.IncrementalDecoder

2017-10-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: As a consequence, _io.IncrementalNewlineDecoder doesn't have the error attribute. -- ___ Python tracker ___ ___

[issue31722] _io.IncrementalNewlineDecoder doesn't inherit codecs.IncrementalDecoder

2017-10-07 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : It is documented that io.IncrementalNewlineDecoder inherits codecs.IncrementalDecoder. And the Python implementation does. But the C implementation doesn't. >>> issubclass(_pyio.IncrementalNewlineDecoder, codecs.IncrementalDecoder) True >>> issubclass(_io