@@ -18,8 +18,6 @@ defined:
1818+-----------+----------------+-------------------+-----------------------+
1919| Type code | C Type | Python Type | Minimum size in bytes |
2020+===========+================+===================+=======================+
21- | ``'c' `` | char | character | 1 |
22- +-----------+----------------+-------------------+-----------------------+
2321| ``'b' `` | signed char | int | 1 |
2422+-----------+----------------+-------------------+-----------------------+
2523| ``'B' `` | unsigned char | int | 1 |
@@ -219,15 +217,14 @@ The following data items and methods are also supported:
219217
220218When an array object is printed or converted to a string, it is represented as
221219``array(typecode, initializer) ``. The *initializer * is omitted if the array is
222- empty, otherwise it is a string if the *typecode * is ``'c ' ``, otherwise it is a
220+ empty, otherwise it is a string if the *typecode * is ``'u ' ``, otherwise it is a
223221list of numbers. The string is guaranteed to be able to be converted back to an
224222array with the same type and value using :func: `eval `, so long as the
225223:func: `array ` function has been imported using ``from array import array ``.
226224Examples::
227225
228226 array('l')
229- array('c', 'hello world')
230- array('u', u'hello \u2641')
227+ array('u', 'hello \u2641')
231228 array('l', [1, 2, 3, 4, 5])
232229 array('d', [1.0, 2.0, 3.14])
233230
0 commit comments