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.

Author lopgok
Recipients georg.brandl, lopgok
Date 2008-12-06.02:02:33
SpamBayes Score 0.018123668
Marked as misclassified No
Message-id <1228528955.11.0.946708107115.issue4557@psf.upfronthosting.co.za>
In-reply-to
Content
def char_sieve():
    char_data = array('c')
...

produces:
  File ".../prime.py", line 78, in char_sieve
    char_data = array('c')
ValueError: bad typecode (must be b, B, u, h, H, i, I, l, L, f or d)

However,
http://docs.python.org/3.0/library/array.html?highlight=array#module-array
says that 'c' is a legal value.
History
Date User Action Args
2008-12-06 02:02:35lopgoksetrecipients: + lopgok, georg.brandl
2008-12-06 02:02:35lopgoksetmessageid: <1228528955.11.0.946708107115.issue4557@psf.upfronthosting.co.za>
2008-12-06 02:02:34lopgoklinkissue4557 messages
2008-12-06 02:02:33lopgokcreate