[issue43305] A typo in /Modules/_io/bufferedio.c

2021-02-26 Thread Ma Lin
Ma Lin added the comment: Close as invalid. They the same effect: PyErr_GivenExceptionMatches(v, PyExc_BlockingIOError)) PyErr_GivenExceptionMatches(t, PyExc_BlockingIOError)) -- resolution: -> wont fix stage: -> resolved status: open -> closed

[issue43305] A typo in /Modules/_io/bufferedio.c

2021-02-26 Thread Ma Lin
Ma Lin added the comment: I am trying to write a test-case. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue43305] A typo in /Modules/_io/bufferedio.c

2021-02-24 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +serhiy.storchaka, vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43305] A typo in /Modules/_io/bufferedio.c

2021-02-23 Thread Ma Lin
New submission from Ma Lin : 654PyErr_Fetch(&t, &v, &tb); 655if (v == NULL || !PyErr_GivenExceptionMatches(v, PyExc_BlockingIOError)) { ↑ this should be t https://github.com/python/cpython/blob/v3.10.0a5/Modules/_io/bufferedio.c#L654-