diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-04-20 23:31:22 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-04-20 23:31:22 (GMT) |
commit | 2b8ef2df57b6210352acfd6a287028fae38862e8 (patch) | |
tree | 4ca703d14e3cc1d088fe35ded3a17b89243f4bde /Doc/library/sys.rst | |
parent | 82f614b20a71455e348c3787b4c44991cebb3525 (diff) | |
download | cpython-2b8ef2df57b6210352acfd6a287028fae38862e8.zip cpython-2b8ef2df57b6210352acfd6a287028fae38862e8.tar.gz cpython-2b8ef2df57b6210352acfd6a287028fae38862e8.tar.bz2 |
say struct sequence rather than structseq and link to glossary
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 5ecc46f..4b1f02e 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -224,8 +224,8 @@ always available. .. data:: flags - The struct sequence *flags* exposes the status of command line flags. The - attributes are read only. + The :term:`struct sequence` *flags* exposes the status of command line + flags. The attributes are read only. ============================= ============================= attribute flag @@ -249,12 +249,12 @@ always available. .. data:: float_info - A structseq holding information about the float type. It contains low level - information about the precision and internal representation. The values - correspond to the various floating-point constants defined in the standard - header file :file:`float.h` for the 'C' programming language; see section - 5.2.4.2.2 of the 1999 ISO/IEC C standard [C99]_, 'Characteristics of - floating types', for details. + A :term:`struct sequence` holding information about the float type. It + contains low level information about the precision and internal + representation. The values correspond to the various floating-point + constants defined in the standard header file :file:`float.h` for the 'C' + programming language; see section 5.2.4.2.2 of the 1999 ISO/IEC C standard + [C99]_, 'Characteristics of floating types', for details. +---------------------+----------------+--------------------------------------------------+ | attribute | float.h macro | explanation | @@ -500,8 +500,9 @@ always available. .. data:: hash_info - A structseq giving parameters of the numeric hash implementation. For - more details about hashing of numeric types, see :ref:`numeric-hash`. + A :term:`struct sequence` giving parameters of the numeric hash + implementation. For more details about hashing of numeric types, see + :ref:`numeric-hash`. +---------------------+--------------------------------------------------+ | attribute | explanation | @@ -542,8 +543,8 @@ always available. .. data:: int_info - A struct sequence that holds information about Python's - internal representation of integers. The attributes are read only. + A :term:`struct sequence` that holds information about Python's internal + representation of integers. The attributes are read only. +-------------------------+----------------------------------------------+ | attribute | explanation | |