diff options
author | Pablo Galindo <pablogsal@gmail.com> | 2021-04-05 16:38:40 (GMT) |
---|---|---|
committer | Pablo Galindo <pablogsal@gmail.com> | 2021-04-05 16:39:49 (GMT) |
commit | 53e55290cf1972919ce2e83982346ff562ca31e3 (patch) | |
tree | 0f100d73826824d7fde017007502b37a4a22ea97 /Lib/pydoc_data/topics.py | |
parent | 57f21db3f629649dbd7c4531078b6a2104896411 (diff) | |
download | cpython-53e55290cf1972919ce2e83982346ff562ca31e3.zip cpython-53e55290cf1972919ce2e83982346ff562ca31e3.tar.gz cpython-53e55290cf1972919ce2e83982346ff562ca31e3.tar.bz2 |
Python 3.10.0a7v3.10.0a7
Diffstat (limited to 'Lib/pydoc_data/topics.py')
-rw-r--r-- | Lib/pydoc_data/topics.py | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py index a86d422..83e1a97 100644 --- a/Lib/pydoc_data/topics.py +++ b/Lib/pydoc_data/topics.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Autogenerated by Sphinx on Mon Mar 1 16:48:51 2021 +# Autogenerated by Sphinx on Mon Apr 5 17:39:41 2021 topics = {'assert': 'The "assert" statement\n' '**********************\n' '\n' @@ -5782,9 +5782,11 @@ topics = {'assert': 'The "assert" statement\n' '"Formatter",\n' 'subclasses can define their own format string syntax). The ' 'syntax is\n' - 'related to that of formatted string literals, but there ' - 'are\n' - 'differences.\n' + 'related to that of formatted string literals, but it is ' + 'less\n' + 'sophisticated and, in particular, does not support ' + 'arbitrary\n' + 'expressions.\n' '\n' 'Format strings contain “replacement fields” surrounded by ' 'curly braces\n' @@ -5978,7 +5980,7 @@ topics = {'assert': 'The "assert" statement\n' 'character that can be any character and defaults to a space ' 'if\n' 'omitted. It is not possible to use a literal curly brace ' - '(“"{"” or\n' + '(”"{"” or\n' '“"}"”) as the *fill* character in a formatted string ' 'literal or when\n' 'using the "str.format()" method. However, it is possible ' @@ -7676,7 +7678,7 @@ topics = {'assert': 'The "assert" statement\n' '\n' 'Note that numeric literals do not include a sign; a phrase like ' '"-1"\n' - 'is actually an expression composed of the unary operator ‘"-"‘ ' + 'is actually an expression composed of the unary operator ‘"-"’ ' 'and the\n' 'literal "1".\n', 'numeric-types': 'Emulating numeric types\n' @@ -13956,9 +13958,9 @@ topics = {'assert': 'The "assert" statement\n' '| "s + t" | the concatenation of *s* and *t* ' '| (6)(7) |\n' '+----------------------------+----------------------------------+------------+\n' - '| "s * n" or "n * s" | equivalent to *n* copies of the ' + '| "s * n" or "n * s" | equivalent to adding *s* to ' '| (2)(7) |\n' - '| | *s* sequence ' + '| | itself *n* times ' '| |\n' '+----------------------------+----------------------------------+------------+\n' '| "s[i]" | *i*th item of *s*, origin 0 ' |