diff options
author | Łukasz Langa <lukasz@langa.pl> | 2020-02-25 12:21:47 (GMT) |
---|---|---|
committer | Łukasz Langa <lukasz@langa.pl> | 2020-02-25 21:06:39 (GMT) |
commit | 6e02691f300c9918ac5806dafa1f2ecef451d733 (patch) | |
tree | 7e20afa91cc7ba25644ea69935d6b93491b86348 /Lib/pydoc_data/topics.py | |
parent | eb8ac57af26c4eb96a8230eba7492ce5ceef7886 (diff) | |
download | cpython-6e02691f300c9918ac5806dafa1f2ecef451d733.zip cpython-6e02691f300c9918ac5806dafa1f2ecef451d733.tar.gz cpython-6e02691f300c9918ac5806dafa1f2ecef451d733.tar.bz2 |
Python 3.9.0a4v3.9.0a4
Diffstat (limited to 'Lib/pydoc_data/topics.py')
-rw-r--r-- | Lib/pydoc_data/topics.py | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py index fd91446..c6ba945 100644 --- a/Lib/pydoc_data/topics.py +++ b/Lib/pydoc_data/topics.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Autogenerated by Sphinx on Fri Jan 24 22:03:37 2020 +# Autogenerated by Sphinx on Tue Feb 25 13:20:31 2020 topics = {'assert': 'The "assert" statement\n' '**********************\n' '\n' @@ -5291,9 +5291,12 @@ topics = {'assert': 'The "assert" statement\n' 'Changed in version 3.6: Added the "\'_\'" option (see also ' '**PEP 515**).\n' '\n' - '*width* is a decimal integer defining the minimum field ' - 'width. If not\n' - 'specified, then the field width will be determined by the ' + '*width* is a decimal integer defining the minimum total ' + 'field width,\n' + 'including any prefixes, separators, and other formatting ' + 'characters.\n' + 'If not specified, then the field width will be determined ' + 'by the\n' 'content.\n' '\n' 'When no explicit alignment is given, preceding the *width* ' @@ -9005,11 +9008,17 @@ topics = {'assert': 'The "assert" statement\n' 'bases,\n' '**kwds)" (where the additional keyword arguments, if any, ' 'come from\n' - 'the class definition).\n' + 'the class definition). The "__prepare__" method should be ' + 'implemented\n' + 'as a "classmethod()". The namespace returned by ' + '"__prepare__" is\n' + 'passed in to "__new__", but when the final class object is ' + 'created the\n' + 'namespace is copied into a new "dict".\n' '\n' 'If the metaclass has no "__prepare__" attribute, then the ' 'class\n' - 'namespace is initialised as an empty ordered mapping.\n' + 'namespace is initialised as an empty "dict()".\n' '\n' 'See also:\n' '\n' |