diff options
author | Łukasz Langa <lukasz@langa.pl> | 2019-07-04 10:50:19 (GMT) |
---|---|---|
committer | Łukasz Langa <lukasz@langa.pl> | 2019-07-04 10:50:19 (GMT) |
commit | 21dd01dad7b6b38d4fd40b37d65f1ac7203ec4e6 (patch) | |
tree | 693f758a1d34d73d5b774f54da3fddb9181527ca /Lib/pydoc_data | |
parent | 070d3d928d20ccb4790dd077f3794af3c2932e5c (diff) | |
download | cpython-21dd01dad7b6b38d4fd40b37d65f1ac7203ec4e6.zip cpython-21dd01dad7b6b38d4fd40b37d65f1ac7203ec4e6.tar.gz cpython-21dd01dad7b6b38d4fd40b37d65f1ac7203ec4e6.tar.bz2 |
Python 3.8.0b2v3.8.0b2
Diffstat (limited to 'Lib/pydoc_data')
-rw-r--r-- | Lib/pydoc_data/topics.py | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Lib/pydoc_data/topics.py b/Lib/pydoc_data/topics.py index 1fb19f2..6362191 100644 --- a/Lib/pydoc_data/topics.py +++ b/Lib/pydoc_data/topics.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Autogenerated by Sphinx on Tue Jun 4 19:40:37 2019 +# Autogenerated by Sphinx on Thu Jul 4 12:44:09 2019 topics = {'assert': 'The "assert" statement\n' '**********************\n' '\n' @@ -3758,6 +3758,8 @@ topics = {'assert': 'The "assert" statement\n' '\n' " import pdb; pdb.Pdb(skip=['django.*']).set_trace()\n" '\n' + ' Raises an auditing event "pdb.Pdb" with no arguments.\n' + '\n' ' New in version 3.1: The *skip* argument.\n' '\n' ' New in version 3.2: The *nosigint* argument. Previously, a ' @@ -4289,7 +4291,14 @@ topics = {'assert': 'The "assert" statement\n' 'section The standard type hierarchy. (To summarize, the key type\n' 'should be *hashable*, which excludes all mutable objects.) Clashes\n' 'between duplicate keys are not detected; the last datum (textually\n' - 'rightmost in the display) stored for a given key value prevails.\n', + 'rightmost in the display) stored for a given key value prevails.\n' + '\n' + 'Changed in version 3.8: Prior to Python 3.8, in dict ' + 'comprehensions,\n' + 'the evaluation order of key and value was not well-defined. In\n' + 'CPython, the value was evaluated before the key. Starting with ' + '3.8,\n' + 'the key is evaluated before the value, as proposed by **PEP 572**.\n', 'dynamic-features': 'Interaction with dynamic features\n' '*********************************\n' '\n' |