Issue485968

classification
Title: cStringIO.softspace is not assignable.
Type: Severity: normal
Components: Library Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: bckfnn Nosy List: bckfnn
Priority: normal Keywords:

Created on 2001-11-27.12:01:49 by bckfnn, last changed 2001-11-27.12:07:37 by bckfnn.

Messages
msg484 (view) Author: Finn Bock (bckfnn) Date: 2001-11-27.12:01:49
It is not possible to assign a value to the softspace 
field in a cStringIO instance.

>>> import cStringIO
>>> cStringIO.StringIO().softspace = 1
Traceback (innermost last):
  File "<console>", line 1, in ?
TypeError: readonly class or attribute: softspace

It works for StringIO.
msg485 (view) Author: Finn Bock (bckfnn) Date: 2001-11-27.12:07:37
Logged In: YES 
user_id=4201

Added as test344.py
History
Date User Action Args
2001-11-27 12:01:49bckfnncreate