Skip to content

[3.11] gh-98657: [docs] array.typecodes is a module-level attribute (GH-98729) #101483

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions Doc/library/array.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ The actual representation of values is determined by the machine architecture
(strictly speaking, by the C implementation). The actual size can be accessed
through the :attr:`itemsize` attribute.

The module defines the following item:


.. data:: typecodes

A string with all available type codes.


The module defines the following type:


Expand All @@ -79,9 +87,6 @@ The module defines the following type:

.. audit-event:: array.__new__ typecode,initializer array.array

.. data:: typecodes

A string with all available type codes.

Array objects support the ordinary sequence operations of indexing, slicing,
concatenation, and multiplication. When using slice assignment, the assigned
Expand Down