mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
bpo-32747: Remove trailing spaces in docstrings. (GH-5491)
This commit is contained in:
parent
2efb973589
commit
aa0735f597
12 changed files with 44 additions and 44 deletions
|
@ -2772,26 +2772,26 @@ the type of objects stored in them is constrained. The type is specified\n\
|
|||
at object creation time by using a type code, which is a single character.\n\
|
||||
The following type codes are defined:\n\
|
||||
\n\
|
||||
Type code C Type Minimum size in bytes \n\
|
||||
'b' signed integer 1 \n\
|
||||
'B' unsigned integer 1 \n\
|
||||
'u' Unicode character 2 (see note) \n\
|
||||
'h' signed integer 2 \n\
|
||||
'H' unsigned integer 2 \n\
|
||||
'i' signed integer 2 \n\
|
||||
'I' unsigned integer 2 \n\
|
||||
'l' signed integer 4 \n\
|
||||
'L' unsigned integer 4 \n\
|
||||
'q' signed integer 8 (see note) \n\
|
||||
'Q' unsigned integer 8 (see note) \n\
|
||||
'f' floating point 4 \n\
|
||||
'd' floating point 8 \n\
|
||||
Type code C Type Minimum size in bytes\n\
|
||||
'b' signed integer 1\n\
|
||||
'B' unsigned integer 1\n\
|
||||
'u' Unicode character 2 (see note)\n\
|
||||
'h' signed integer 2\n\
|
||||
'H' unsigned integer 2\n\
|
||||
'i' signed integer 2\n\
|
||||
'I' unsigned integer 2\n\
|
||||
'l' signed integer 4\n\
|
||||
'L' unsigned integer 4\n\
|
||||
'q' signed integer 8 (see note)\n\
|
||||
'Q' unsigned integer 8 (see note)\n\
|
||||
'f' floating point 4\n\
|
||||
'd' floating point 8\n\
|
||||
\n\
|
||||
NOTE: The 'u' typecode corresponds to Python's unicode character. On \n\
|
||||
NOTE: The 'u' typecode corresponds to Python's unicode character. On\n\
|
||||
narrow builds this is 2-bytes on wide builds this is 4-bytes.\n\
|
||||
\n\
|
||||
NOTE: The 'q' and 'Q' type codes are only available if the platform \n\
|
||||
C compiler used to build Python supports 'long long', or, on Windows, \n\
|
||||
NOTE: The 'q' and 'Q' type codes are only available if the platform\n\
|
||||
C compiler used to build Python supports 'long long', or, on Windows,\n\
|
||||
'__int64'.\n\
|
||||
\n\
|
||||
Methods:\n\
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue