[issue4557] array('c') in python 3.0 produces error, doc says it is ok

2008-12-06 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: Thanks, fixed the docs in r67605. -- resolution: - fixed status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4557 ___

[issue4557] array('c') in python 3.0 produces error, doc says it is ok

2008-12-05 Thread jeff deifik
New submission from jeff deifik [EMAIL PROTECTED]: 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,