Kaydet (Commit) de4c3f31 authored tarafından Ned Deily's avatar Ned Deily

Update NEWS and pydoc topics.

üst 0da25972
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Autogenerated by Sphinx on Mon Sep 18 23:00:11 2017 # Autogenerated by Sphinx on Tue Dec 5 03:11:02 2017
topics = {'assert': 'The "assert" statement\n' topics = {'assert': 'The "assert" statement\n'
'**********************\n' '**********************\n'
'\n' '\n'
...@@ -2674,7 +2674,6 @@ topics = {'assert': 'The "assert" statement\n' ...@@ -2674,7 +2674,6 @@ topics = {'assert': 'The "assert" statement\n'
' mgr = (EXPR)\n' ' mgr = (EXPR)\n'
' aexit = type(mgr).__aexit__\n' ' aexit = type(mgr).__aexit__\n'
' aenter = type(mgr).__aenter__(mgr)\n' ' aenter = type(mgr).__aenter__(mgr)\n'
' exc = True\n'
'\n' '\n'
' VAR = await aenter\n' ' VAR = await aenter\n'
' try:\n' ' try:\n'
...@@ -4503,12 +4502,6 @@ topics = {'assert': 'The "assert" statement\n' ...@@ -4503,12 +4502,6 @@ topics = {'assert': 'The "assert" statement\n'
' 3.14 10. .001 1e100 3.14e-10 0e0 ' ' 3.14 10. .001 1e100 3.14e-10 0e0 '
'3.14_15_93\n' '3.14_15_93\n'
'\n' '\n'
'Note that numeric literals do not include a sign; a phrase like '
'"-1"\n'
'is actually an expression composed of the unary operator "-" and '
'the\n'
'literal "1".\n'
'\n'
'Changed in version 3.6: Underscores are now allowed for ' 'Changed in version 3.6: Underscores are now allowed for '
'grouping\n' 'grouping\n'
'purposes in literals.\n', 'purposes in literals.\n',
...@@ -5497,7 +5490,7 @@ topics = {'assert': 'The "assert" statement\n' ...@@ -5497,7 +5490,7 @@ topics = {'assert': 'The "assert" statement\n'
'\n' '\n'
'**CPython implementation detail:** The current implementation does ' '**CPython implementation detail:** The current implementation does '
'not\n' 'not\n'
'enforce some of these restriction, but programs should not abuse ' 'enforce some of these restrictions, but programs should not abuse '
'this\n' 'this\n'
'freedom, as future implementations may enforce them or silently ' 'freedom, as future implementations may enforce them or silently '
'change\n' 'change\n'
...@@ -6744,7 +6737,9 @@ topics = {'assert': 'The "assert" statement\n' ...@@ -6744,7 +6737,9 @@ topics = {'assert': 'The "assert" statement\n'
'Addition and subtraction |\n' 'Addition and subtraction |\n'
'+-------------------------------------------------+---------------------------------------+\n' '+-------------------------------------------------+---------------------------------------+\n'
'| "*", "@", "/", "//", "%" | ' '| "*", "@", "/", "//", "%" | '
'Multiplication, matrix multiplication |\n' 'Multiplication, matrix |\n'
'| | '
'multiplication, division, floor |\n'
'| | ' '| | '
'division, remainder [5] |\n' 'division, remainder [5] |\n'
'+-------------------------------------------------+---------------------------------------+\n' '+-------------------------------------------------+---------------------------------------+\n'
...@@ -10102,11 +10097,6 @@ topics = {'assert': 'The "assert" statement\n' ...@@ -10102,11 +10097,6 @@ topics = {'assert': 'The "assert" statement\n'
'or\n' 'or\n'
'greater must be expressed with escapes.\n' 'greater must be expressed with escapes.\n'
'\n' '\n'
'As of Python 3.3 it is possible again to prefix string literals '
'with a\n'
'"u" prefix to simplify maintenance of dual 2.x and 3.x '
'codebases.\n'
'\n'
'Both string and bytes literals may optionally be prefixed with a\n' 'Both string and bytes literals may optionally be prefixed with a\n'
'letter "\'r\'" or "\'R\'"; such strings are called *raw strings* ' 'letter "\'r\'" or "\'R\'"; such strings are called *raw strings* '
'and treat\n' 'and treat\n'
......
This diff is collapsed.
Avoid wholesale rebuild after `make regen-all` if nothing changed.
Prevent double substitution of prefix in python-config.sh.
Fixed Argument Clinic sometimes causing compilation errors when there was
more than one function and/or method in a .c file with the same name.
Abort the build when building out of a not clean source tree.
Fixes Windows SDK version detection when building for Windows.
``detect_modules()`` in ``setup.py`` now also searches the sysroot paths
when cross-compiling.
The `PyExc_RecursionErrorInst` singleton is removed and
`PyErr_NormalizeException()` does not use it anymore. This singleton is
persistent and its members being never cleared may cause a segfault during
finalization of the interpreter. See also issue #22898.
Fix memory corruption due to allocator mix in getpath.c between Py_GetPath()
and Py_SetPath()
Fix PyGILState_Ensure(). When PyGILState_Ensure() is called in a non-Python
thread before PyEval_InitThreads(), only call PyEval_InitThreads() after
calling PyThreadState_New() to fix a crash.
`PyErr_PrintEx()` clears now the ignored exception that may be raised by
`_PySys_SetObjectId()`, for example when no memory.
Fix an assertion failure in `warnings.warn_explicit`, when the return value
of the received loader's get_source() has a bad splitlines() method. Patch
by Oren Milman.
Fix crashes in true division and multiplication of a timedelta object by a
float with a bad as_integer_ratio() method. Patch by Oren Milman.
Fix a crash in the ``__setstate__()`` method of `ctypes._CData`, in case of
a bad ``__dict__``. Patch by Oren Milman.
Fix an assertion failure in imp.create_dynamic(), when spec.name is not a
string. Patch by Oren Milman.
Fix an assertion failure in `_random.Random.seed()` in case the argument has a
bad ``__abs__()`` method. Patch by Oren Milman.
Fix an assertion failure in `ctypes` class definition, in case the class has
an attribute whose name is specified in ``_anonymous_`` but not in
``_fields_``. Patch by Oren Milman.
Fix assertion failures in case of failing to import from a module with a bad
``__name__`` attribute, and in case of failing to access an attribute of such
a module. Patch by Oren Milman.
Fix an assertion failure in `json`, in case `_json.make_encoder()` received
a bad `encoder()` argument. Patch by Oren Milman.
Fix an assertion failure in `_warnings.warn()` in case of a bad
``__name__`` global. Patch by Oren Milman.
Raise a `TypeError` with a helpful error message when class creation fails
due to a metaclass with a bad ``__prepare__()`` method. Patch by Oren Milman.
Fixed an assertion failure in Python parser in case of a bad `unicodedata.normalize()`.
Patch by Oren Milman.
Fixed a ValueError when convert a string with large number of underscores
to integer with binary base.
Fixed a bug in debug memory allocator. There was a write to freed memory
after shrinking a memory block.
Restored blocking "from package import module" by setting
sys.modules["package.module"] to None.
Fix timeout rounding in the select module to round correctly negative timeouts between -1.0 and 0.0.
The functions now block waiting for events as expected. Previously, the call was incorrectly non-blocking.
Patch by Pablo Galindo.
Print the full context/cause chain of exceptions on interpreter exit, even
if an exception in the chain is unhashable or compares equal to later ones.
Patch by Zane Bitter.
Fixed OverflowError in the 'unicode-escape' codec and in
codecs.escape_decode() when decode an escaped non-ascii byte.
BytesWarning no longer emitted when the *fromlist* argument of
``__import__()`` or the ``__all__`` attribute of the module contain bytes
instances.
Fix a segmentation fault caused by a combination of the async soft keyword
and continuation lines.
Bytearray methods partition() and rpartition() now accept only bytes-like
objects as separator, as documented. In particular they now raise TypeError
rather of returning a bogus result when an integer is passed as a separator.
Fix the interactive interpreter looping endlessly when no memory.
Fixed several issues in printing tracebacks (PyTraceBack_Print()).
* Setting sys.tracebacklimit to 0 or less now suppresses printing tracebacks.
* Setting sys.tracebacklimit to None now causes using the default limit.
* Setting sys.tracebacklimit to an integer larger than LONG_MAX now means using
the limit LONG_MAX rather than the default limit.
* Fixed integer overflows in the case of more than 2**31 traceback items on
Windows.
* Fixed output errors handling.
co_flags.CO_NOFREE is now always set correctly by the code object
constructor based on freevars and cellvars, rather than needing to be set
correctly by the caller. This ensures it will be cleared automatically when
additional cell references are injected into a modified code object and
function.
The operator functions without double underscores are preferred for clarity.
The one with underscores are only kept for back-compatibility.
Fix incorrect usage of ``get_history_length`` in readline documentation
example code. Patch by Brad Smith.
Added asyncio.BaseEventLoop.connect_accepted_socket versionaddded marker.
IDLE module browser now shows nested classes and functions.
Original patches for code and tests by Guilherme Polo and
Cheryl Sabella, respectively.
Rename IDLE's module browser from Class Browser to Module Browser.
The original module-level class and method browser became a module
browser, with the addition of module-level functions, years ago.
Nested classes and functions were added yesterday. For back-
compatibility, the virtual event <<open-class-browser>>, which
appears on the Keys tab of the Settings dialog, is not changed.
Patch by Cheryl Sabella.
Simplify the API of IDLE's Module Browser.
Passing a widget instead of an flist with a root widget opens the option of
creating a browser frame that is only part of a window. Passing a full file
name instead of pieces assumed to come from a .py file opens the possibility
of browsing python files that do not end in .py.
Use non-Latin characters in the IDLE's Font settings sample.
Even if one selects a font that defines a limited subset of the unicode
Basic Multilingual Plane, tcl/tk will use other fonts that define a
character. The expanded example give users of non-Latin characters
a better idea of what they might see in IDLE's shell and editors.
To make room for the expanded sample, frames on the Font tab are
re-arranged. The Font/Tabs help explains a bit about the additions.
Fix a TypeError that caused a shell restart when printing a traceback that
includes an exception that is unhashable. Patch by Zane Bitter.
Test_code_module now passes if run after test_idle, which sets ps1.
The code module uses sys.ps1 if present or sets it to '>>> ' if not.
Test_code_module now properly tests both behaviors. Ditto for ps2.
The font sample in the IDLE configuration dialog is now editable.
Changes persist while IDLE remains open
IDLE -- Restrict shell prompt manipulaton to the shell. Editor and output
windows only see an empty last prompt line. This simplifies the code and
fixes a minor bug when newline is inserted. Sys.ps1, if present, is read on
Shell start-up, but is not set or changed.
IDLE: Fix old and new bugs in pathbrowser; improve tests.
Patch mostly by Cheryl Sabella.
Delete unused file idlelib/tabbedpages.py. Use of TabbedPageSet in
configdialog was replaced by ttk.Notebook.
Improve tk event exception tracebacks in IDLE.
When tk event handling is driven by IDLE's run loop, a confusing
and distracting queue.EMPTY traceback context is no longer added
to tk event exception tracebacks. The traceback is now the same
as when event handling is driven by user code. Patch based on a
suggestion by Serhiy Storchaka.
Make multiprocessing's forkserver process immune to Ctrl-C and other user interruptions.
If it crashes, restart it when necessary.
multiprocessing's semaphore tracker should be launched again if crashed.
Fix ``poll.poll([timeout])`` in the ``select`` module for arbitrary negative
timeouts on all OSes where it can only be a non-negative integer or -1.
Patch by Riccardo Coccioli.
python -m ensurepip now exits with non-zero exit code if pip bootstrapping
has failed.
``threading.current_thread()`` should not return a dummy thread at shutdown.
Stop crashes when concurrently iterate over itertools.groupby() iterators.
inspect.unwrap() will now only try to unwrap an object
sys.getrecursionlimit() times, to protect against objects which create a new
object on every attribute access.
Added a workaround for getkey() in curses for ncurses 5.7 and earlier.
Fixed typo in the name of Tkinter's method adderrorinfo().
Fixed memory leaks in Tkinter's methods splitlist() and split() when pass a
string larger than 2 GiB.
Fix method set_protocol() of class _SSLProtocolTransport in asyncio module.
This method was previously modifying a wrong reference to the protocol.
an empty asyncio.Queue now doesn't leak memory when queue.get pollers
timeout
Prevent crashes in `_elementtree` due to unsafe cleanup of `Element.text`
and `Element.tail`. Patch by Oren Milman.
On Windows, faulthandler.enable() now ignores MSC and COM exceptions.
Fix possible crash in timedelta constructor called with custom integers.
Prevent a crash in ``sqlite3.Cursor.close()`` in case the ``Cursor`` object is
uninitialized. Patch by Oren Milman.
``idpattern`` in ``string.Template`` matched some non-ASCII characters. Now
it uses ``-i`` regular expression local flag to avoid non-ASCII characters.
Prevent a crash when calling the ``__init__()`` method of a
``sqlite3.Cursor`` object more than once. Patch by Oren Milman.
traceback: Fix a TypeError that occurred during printing of exception
tracebacks when either the current exception or an exception in its
context/cause chain is unhashable. Patch by Zane Bitter.
Fix timeout rounding in time.sleep(), threading.Lock.acquire() and
socket.socket.settimeout() to round correctly negative timeouts between -1.0 and
0.0. The functions now block waiting for events as expected. Previously, the
call was incorrectly non-blocking. Patch by Pablo Galindo.
The ``manager`` property on LoggerAdapter objects is now properly settable.
If nested log adapters are used, the inner ``process()`` methods are no
longer omitted.
Fix multiprocessing.Process when stdout and/or stderr is closed or None.
Instances of pickle.Pickler subclass with the persistent_id() method and
pickle.Unpickler subclass with the persistent_load() method no longer create
reference cycles.
Fixed the layout of the kqueue_event structure on OpenBSD and NetBSD. Fixed
the comparison of the kqueue_event objects.
Fix the method for checking pad state of curses WINDOW. Patch by Masayuki
Yamamoto.
plistlib now catches more errors when read binary plists and raises
InvalidFileException instead of unexpected exceptions.
Fixed stack corruption in curses.box() and curses.ungetmouse() when the size
of types chtype or mmask_t is less than the size of C long. curses.box()
now accepts characters as arguments. Based on patch by Steve Fink.
Fixed compilation of the socket module on NetBSD 8. Fixed assertion failure
or reading arbitrary data when parse a AF_BLUETOOTH address on NetBSD and
DragonFly BSD.
Fix Blake2 params leaf_size and node_offset on big endian platforms. Patch
by Jack O'Connor.
Fixed determining the MAC address in the uuid module:
* Using ifconfig on NetBSD and OpenBSD.
* Using arp on Linux, FreeBSD, NetBSD and OpenBSD.
Based on patch by Takayuki Shimizukawa.
Restored support of loading marshal files with the TYPE_INT64 code. These
files can be produced in Python 2.7.
Fixed the looping of asyncio in the case of reconnection the socket during
waiting async read/write from/to the socket.
Make asyncio.IncompleteReadError and LimitOverrunError pickleable.
Fixed issues with binary plists:
* Fixed saving bytearrays.
* Identical objects will be saved only once.
* Equal references will be load as identical objects.
* Added support for saving and loading recursive data structures.
``codecs.StreamReader.read(n)`` now returns not more than *n*
characters/bytes for non-negative *n*. This makes it compatible with
``read()`` methods of other file-like objects.
:func:`msilib.OpenDatabase` now raises a better exception message when it
couldn't open or create an MSI file. Initial patch by William Tisäter.
Fix wrong usage of :func:`collections.namedtuple` in
the :meth:`RobotFileParser.parse() <urllib.robotparser.RobotFileParser.parse>`
method.
Initial patch by Robin Wellner.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment