Message2265

Author cupdike
Recipients
Date 2005-06-13.03:08:31
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=775310

I don't think str() should call tostring() because that is
not what
cpython does.  But PyArray should be changed so that str()
outputs the typecode first.  The real goal is as follows:

Python 2.2.3 (#42, May 30 2003, 18:12:08)
Type "help", "copyright", "credits" or "li
>>> from array import array
>>> x=array('c',"abcde")
>>> x == eval(str(x))
1

Currently, this produces "NameError: char".  Unless I hear
otherwise from someone, I'll set this to Closed--Rejected 
and implement the requisite changes.
History
Date User Action Args
2008-02-20 17:18:20adminlinkissue629217 messages
2008-02-20 17:18:20admincreate