diff options
author | oldk <oldk1331@users.noreply.github.com> | 2018-02-02 08:52:55 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-02-02 08:52:55 (GMT) |
commit | aa0735f597b072c0eb00404c4d7df359ddc26755 (patch) | |
tree | c6ff6cd0d312d35d57b52821df54abc009f95b7a /Modules/arraymodule.c | |
parent | 2efb9735899c7c642f3e75a121af82b1679577d3 (diff) | |
download | cpython-aa0735f597b072c0eb00404c4d7df359ddc26755.zip cpython-aa0735f597b072c0eb00404c4d7df359ddc26755.tar.gz cpython-aa0735f597b072c0eb00404c4d7df359ddc26755.tar.bz2 |
bpo-32747: Remove trailing spaces in docstrings. (GH-5491)
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r-- | Modules/arraymodule.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index 900c374..6a9ff3e 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -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\ |