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.

classification
Title: cStringIO does not set closed attr
Type: Stage:
Components: None Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: calvin, rhettinger
Priority: normal Keywords:

Created on 2003-07-13 11:05 by calvin, last changed 2022-04-10 16:09 by admin. This issue is now closed.

Messages (2)
msg17049 - (view) Author: Bastian Kleineidam (calvin) Date: 2003-07-13 11:05
All StringIO() instances have and set the "closed"
attribute on close. The cStringIO() instances do not,
but I see no reason why they should not have and set a
"closed" attribute.
msg17050 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2003-08-08 12:23
Logged In: YES 
user_id=80475

Fixed.
See Modules/cStringIO.c 2.41 and 2.40.10.1
History
Date User Action Args
2022-04-10 16:09:57adminsetgithub: 38846
2003-07-13 11:05:17calvincreate