Skip to content

Commit

Permalink
3.7.0b3
Browse files Browse the repository at this point in the history
  • Loading branch information
ned-deily committed Mar 29, 2018
1 parent 7a6f59e commit 4e7efa9
Show file tree
Hide file tree
Showing 58 changed files with 589 additions and 129 deletions.
4 changes: 2 additions & 2 deletions Include/patchlevel.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
#define PY_MINOR_VERSION 7
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA
#define PY_RELEASE_SERIAL 2
#define PY_RELEASE_SERIAL 3

/* Version as a string */
#define PY_VERSION "3.7.0b2+"
#define PY_VERSION "3.7.0b3"
/*--end constants--*/

/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
Expand Down
56 changes: 44 additions & 12 deletions Lib/pydoc_data/topics.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Autogenerated by Sphinx on Tue Feb 27 19:39:14 2018
# Autogenerated by Sphinx on Thu Mar 29 07:53:04 2018
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
'\n'
Expand Down Expand Up @@ -6665,13 +6665,11 @@
'object.__complex__(self)\n'
'object.__int__(self)\n'
'object.__float__(self)\n'
'object.__round__(self[, n])\n'
'\n'
' Called to implement the built-in functions "complex()", '
'"int()",\n'
' "float()" and "round()". Should return a value of the '
'appropriate\n'
' type.\n'
'"int()" and\n'
' "float()". Should return a value of the appropriate '
'type.\n'
'\n'
'object.__index__(self)\n'
'\n'
Expand All @@ -6689,7 +6687,25 @@
'when\n'
' "__index__()" is defined "__int__()" should also be '
'defined, and\n'
' both should return the same value.\n',
' both should return the same value.\n'
'\n'
'object.__round__(self[, ndigits])\n'
'object.__trunc__(self)\n'
'object.__floor__(self)\n'
'object.__ceil__(self)\n'
'\n'
' Called to implement the built-in function "round()" and '
'"math"\n'
' functions "trunc()", "floor()" and "ceil()". Unless '
'*ndigits* is\n'
' passed to "__round__()" all these methods should return '
'the value\n'
' of the object truncated to an "Integral" (typically an '
'"int").\n'
'\n'
' If "__int__()" is not defined then the built-in function '
'"int()"\n'
' falls back to "__trunc__()".\n',
'objects': 'Objects, values and types\n'
'*************************\n'
'\n'
Expand Down Expand Up @@ -9261,13 +9277,11 @@
'object.__complex__(self)\n'
'object.__int__(self)\n'
'object.__float__(self)\n'
'object.__round__(self[, n])\n'
'\n'
' Called to implement the built-in functions "complex()", '
'"int()",\n'
' "float()" and "round()". Should return a value of the '
'appropriate\n'
' type.\n'
'"int()" and\n'
' "float()". Should return a value of the appropriate '
'type.\n'
'\n'
'object.__index__(self)\n'
'\n'
Expand All @@ -9287,6 +9301,24 @@
'defined, and\n'
' both should return the same value.\n'
'\n'
'object.__round__(self[, ndigits])\n'
'object.__trunc__(self)\n'
'object.__floor__(self)\n'
'object.__ceil__(self)\n'
'\n'
' Called to implement the built-in function "round()" and '
'"math"\n'
' functions "trunc()", "floor()" and "ceil()". Unless '
'*ndigits* is\n'
' passed to "__round__()" all these methods should return '
'the value\n'
' of the object truncated to an "Integral" (typically an '
'"int").\n'
'\n'
' If "__int__()" is not defined then the built-in function '
'"int()"\n'
' falls back to "__trunc__()".\n'
'\n'
'\n'
'With Statement Context Managers\n'
'===============================\n'
Expand Down
Loading

0 comments on commit 4e7efa9

Please sign in to comment.