This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2008年12月24日 08:15 by semanticist, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg78257 - (view) | Author: Miles (semanticist) | Date: 2008年12月24日 08:15 | |
The closed property of BufferedRWPair attempts to call the closed property
of its writer as a method, which fails because writer.closed is a bool.
The following code demonstrates the error:
import socket
socket.socket().makefile('rwb').closed
|
|||
| msg78262 - (view) | Author: Benjamin Peterson (benjamin.peterson) * (Python committer) | Date: 2008年12月24日 15:10 | |
Thanks for the report. Fixed in r67923. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:43 | admin | set | github: 48986 |
| 2008年12月24日 15:10:51 | benjamin.peterson | set | status: open -> closed resolution: fixed messages: + msg78262 nosy: + benjamin.peterson |
| 2008年12月24日 08:15:34 | semanticist | create | |