Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 23f4589

Browse files
committed
v3.8.0a2
1 parent 16323cb commit 23f4589

57 files changed

Lines changed: 555 additions & 120 deletions

File tree

Some content is hidden

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

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_ALPHA
23-
#define PY_RELEASE_SERIAL 1
23+
#define PY_RELEASE_SERIAL 2
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.8.0a1+"
26+
#define PY_VERSION "3.8.0a2"
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: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Sun Feb 3 14:00:19 2019
2+
# Autogenerated by Sphinx on Mon Feb 25 13:03:43 2019
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -962,7 +962,8 @@
962962
'in a parent.)\n'
963963
'\n'
964964
'The space saved over using *__dict__* can be '
965-
'significant.\n'
965+
'significant. Attribute\n'
966+
'lookup speed can be significantly improved as well.\n'
966967
'\n'
967968
'object.__slots__\n'
968969
'\n'
@@ -8572,7 +8573,9 @@
85728573
'(unless explicitly declared in *__slots__* or available in a '
85738574
'parent.)\n'
85748575
'\n'
8575-
'The space saved over using *__dict__* can be significant.\n'
8576+
'The space saved over using *__dict__* can be significant. '
8577+
'Attribute\n'
8578+
'lookup speed can be significantly improved as well.\n'
85768579
'\n'
85778580
'object.__slots__\n'
85788581
'\n'
@@ -11394,7 +11397,8 @@
1139411397
' Additional information about a function’s definition can be\n'
1139511398
' retrieved from its code object; see the description of '
1139611399
'internal\n'
11397-
' types below.\n'
11400+
' types below. The "cell" type can be accessed in the "types"\n'
11401+
' module.\n'
1139811402
'\n'
1139911403
' Instance methods\n'
1140011404
' An instance method object combines a class, a class instance '

0 commit comments

Comments
 (0)