Skip to content

Commit cd400a1

Browse files
committed
Merge tag 'v3.8.0b2' into 3.8
Python 3.8.0b2
2 parents 19956d9 + 21dd01d commit cd400a1

File tree

97 files changed

+947
-192
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+947
-192
lines changed

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#define PY_MINOR_VERSION 8
2121
#define PY_MICRO_VERSION 0
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA
23-
#define PY_RELEASE_SERIAL 1
23+
#define PY_RELEASE_SERIAL 2
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.8.0b1+"
26+
#define PY_VERSION "3.8.0b2"
2727
/*--end constants--*/
2828

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

Lib/pydoc_data/topics.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Tue Jun 4 19:40:37 2019
2+
# Autogenerated by Sphinx on Thu Jul 4 12:44:09 2019
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -3758,6 +3758,8 @@
37583758
'\n'
37593759
" import pdb; pdb.Pdb(skip=['django.*']).set_trace()\n"
37603760
'\n'
3761+
' Raises an auditing event "pdb.Pdb" with no arguments.\n'
3762+
'\n'
37613763
' New in version 3.1: The *skip* argument.\n'
37623764
'\n'
37633765
' New in version 3.2: The *nosigint* argument. Previously, a '
@@ -4289,7 +4291,14 @@
42894291
'section The standard type hierarchy. (To summarize, the key type\n'
42904292
'should be *hashable*, which excludes all mutable objects.) Clashes\n'
42914293
'between duplicate keys are not detected; the last datum (textually\n'
4292-
'rightmost in the display) stored for a given key value prevails.\n',
4294+
'rightmost in the display) stored for a given key value prevails.\n'
4295+
'\n'
4296+
'Changed in version 3.8: Prior to Python 3.8, in dict '
4297+
'comprehensions,\n'
4298+
'the evaluation order of key and value was not well-defined. In\n'
4299+
'CPython, the value was evaluated before the key. Starting with '
4300+
'3.8,\n'
4301+
'the key is evaluated before the value, as proposed by **PEP 572**.\n',
42934302
'dynamic-features': 'Interaction with dynamic features\n'
42944303
'*********************************\n'
42954304
'\n'

0 commit comments

Comments
 (0)