Yury Selivanov
|
c0215dfbc1
|
Issue #28639: Fix inspect.isawaitable to always return bool
Patch by Justin Mayfield.
|
2016-11-08 19:57:44 -05:00 |
Martin Panter
|
88281ceed0
|
Issue #28485: Check for negative workers even without ProcessPoolExecutor
This matches the documentation, and passes the test suite when multithreading
is disabled.
|
2016-11-05 01:11:36 +00:00 |
Ned Deily
|
da4887a88d
|
Issue #28616: Correct help for sys.version_info releaselevel component.
Patch by Anish Tambe.
|
2016-11-04 17:03:34 -04:00 |
Yury Selivanov
|
600a349781
|
Issue #28613: Fix get_event_loop() to return the current loop
when called from coroutines or callbacks.
|
2016-11-04 14:29:28 -04:00 |
Yury Selivanov
|
491a912659
|
Issue #28600: Optimize loop.call_soon().
Run expensive type checks only in debug mode. In addition, stop
supporting passing handles to loop.run_in_executor.
|
2016-11-03 15:09:24 -07:00 |
Serhiy Storchaka
|
a7c972e03b
|
Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when
the garbage collector is invoked in other thread.
Based on patch by Sebastian Cufre.
|
2016-11-03 15:37:01 +02:00 |
Serhiy Storchaka
|
92c1a90462
|
Issue #28513: Documented command-line interface of zipfile.
|
2016-11-02 12:06:15 +02:00 |
Ned Deily
|
38adbfa710
|
Issue #28248: Update macOS installer build to use OpenSSL 1.0.2j.
Original patch by Mariatta Wijaya.
|
2016-10-31 19:51:58 -04:00 |
Serhiy Storchaka
|
04f17f103a
|
Issue #27517: LZMA compressor and decompressor no longer raise exceptions if
given empty data twice. Patch by Benjamin Fogle.
|
2016-10-31 08:30:09 +02:00 |
Serhiy Storchaka
|
0bcd89b859
|
Issue #28549: Fixed segfault in curses's addch() with ncurses6.
|
2016-10-30 22:52:06 +02:00 |
Serhiy Storchaka
|
a89d22aff3
|
Issue #28449: tarfile.open() with mode "r" or "r:" now tries to open a tar
file with compression before trying to open it without compression. Otherwise
it had 50% chance failed with ignore_zeros=True.
|
2016-10-30 20:52:29 +02:00 |
Serhiy Storchaka
|
c9b750d249
|
Issue #23262: The webbrowser module now supports Firefox 36+ and derived
browsers. Based on patch by Oleg Broytman.
|
2016-10-30 19:16:33 +02:00 |
Serhiy Storchaka
|
32c0d3ada5
|
Issue #27939: Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale caused
by representing the scale as float value internally in Tk. tkinter.IntVar
now works if float value is set to underlying Tk variable.
|
2016-10-30 18:49:52 +02:00 |
Serhiy Storchaka
|
0438683939
|
Backed out changeset 9f7505019767 (issue #27275).
|
2016-10-30 17:17:24 +02:00 |
Xavier de Gaye
|
84968b74c8
|
Issue #28444: Fix missing extensions modules when cross compiling.
|
2016-10-29 16:57:20 +02:00 |
Martin Panter
|
4afdca056b
|
Issue #26240: Clean up the subprocess module doc string
Patch by Tim Mitchell.
|
2016-10-25 22:20:48 +00:00 |
Serhiy Storchaka
|
4832580596
|
Issue #27275: Fixed implementation of pop() and popitem() methods in
subclasses of accelerated OrderedDict.
|
2016-10-25 15:33:23 +03:00 |
Serhiy Storchaka
|
7ff51bd2b8
|
Issue #28255: calendar.TextCalendar().prmonth() no longer prints a space
at the start of new line after printing a month's calendar. Patch by
Xiang Zhang.
|
2016-10-25 15:00:52 +03:00 |
Serhiy Storchaka
|
f3ebc9fe3f
|
Issue #20491: The textwrap.TextWrapper class now honors non-breaking spaces.
Based on patch by Kaarle Ritvanen.
|
2016-10-25 14:44:54 +03:00 |
Serhiy Storchaka
|
42bababba6
|
Issue #28353: os.fwalk() no longer fails on broken links.
|
2016-10-25 14:28:38 +03:00 |
Serhiy Storchaka
|
839023f12c
|
Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug build.
|
2016-10-25 10:13:43 +03:00 |
Serhiy Storchaka
|
77eede35fc
|
Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug build.
|
2016-10-25 10:07:51 +03:00 |
Serhiy Storchaka
|
071dec2027
|
Issue #25464: Fixed HList.header_exists() in tkinter.tix module by addin
a workaround to Tix library bug.
|
2016-10-24 23:47:28 +03:00 |
Serhiy Storchaka
|
666de77727
|
Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive.
|
2016-10-23 15:55:09 +03:00 |
Martin Panter
|
1002a621c1
|
Issue #28435: Avoid no_proxy environment variable interfering with tests
Patch by Piotr Szczepaniak.
|
2016-10-22 01:42:06 +00:00 |
Yury Selivanov
|
e8a6045fea
|
Issue #26796: Don't configure the number of workers for default threadpool executor.
Initial patch by Hans Lawrenz.
|
2016-10-21 17:40:42 -04:00 |
Yury Selivanov
|
3d67615a48
|
Issue #26923: Fix asyncio.Gather to refuse being cancelled once all children are done.
Patch by Johannes Ebke.
|
2016-10-21 17:22:17 -04:00 |
Brett Cannon
|
10a7dbdd5d
|
Issue #28396: Remove any mention of .pyo files from the man page.
Thanks to Ville Skyttä for the patch.
|
2016-10-21 12:15:14 -07:00 |
Serhiy Storchaka
|
04eb777279
|
Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception
loss in PyTraceBack_Here().
|
2016-10-18 13:23:18 +03:00 |
Victor Stinner
|
1f6b69b749
|
Issue #28409: regrtest: fix the parser of command line arguments.
|
2016-10-17 18:11:03 +02:00 |
Guido van Rossum
|
b1a751b5c2
|
Issue #24452: Make webbrowser support Chrome on Mac OS X.
|
2016-10-13 11:17:27 -07:00 |
Xavier de Gaye
|
10e54aeaa2
|
Issue #20766: Fix references leaked by pdb in the handling of SIGINT handlers.
|
2016-10-12 20:13:24 +02:00 |
Zachary Ware
|
fd28cbef4b
|
Issue #28248: Merge with 3.4
|
2016-10-10 22:11:12 -05:00 |
Zachary Ware
|
068534ab03
|
Issue #28248: Update Windows build to use OpenSSL 1.0.2j
|
2016-10-10 21:57:20 -05:00 |
Martin Panter
|
d2a584b47b
|
Issue #28394: Spelling and typo fixes in code comments and changelog
Includes patch by Ville Skyttä.
|
2016-10-10 00:24:34 +00:00 |
Yury Selivanov
|
4145c83806
|
Issue #27972: Prohibit Tasks to await on themselves.
|
2016-10-09 12:19:12 -04:00 |
Yury Selivanov
|
908d55dd7e
|
Issue #28399: Remove UNIX socket from FS before binding.
Patch by Коренберг Марк.
|
2016-10-09 12:15:08 -04:00 |
Serhiy Storchaka
|
9c0e1f83af
|
Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters().
Patch by Xiang Zhang.
|
2016-10-08 22:45:38 +03:00 |
Serhiy Storchaka
|
48b1c3fcfc
|
Issue #28376: The type of long range iterator is now registered as Iterator.
Patch by Oren Milman.
|
2016-10-08 22:04:12 +03:00 |
Serhiy Storchaka
|
44759bcf13
|
Issue #28376: The constructor of range_iterator now checks that step is not 0.
Patch by Oren Milman.
|
2016-10-08 21:43:11 +03:00 |
Serhiy Storchaka
|
8ef34600c7
|
Issue #26906: Resolving special methods of uninitialized type now causes
implicit initialization of the type instead of a fail.
|
2016-10-08 12:24:09 +03:00 |
Serhiy Storchaka
|
de0574bdab
|
Issue #18287: PyType_Ready() now checks that tp_name is not NULL.
Original patch by Niklas Koep.
|
2016-10-07 23:24:35 +03:00 |
Serhiy Storchaka
|
8793b21525
|
Issue #26293: Fixed writing ZIP files that starts not from the start of the
file. Offsets in ZIP file now are relative to the start of the archive in
conforming to the specification.
|
2016-10-07 22:20:50 +03:00 |
Serhiy Storchaka
|
cf3806026b
|
Issue #24098: Fixed possible crash when AST is changed in process of
compiling it.
|
2016-10-07 21:51:28 +03:00 |
Yury Selivanov
|
cb9424f643
|
Issue #27759: Fix selectors incorrectly retain invalid file descriptors.
(Backported to 3.4 as this bug might be exploited to for DoS)
|
2016-10-06 14:03:03 -04:00 |
Benjamin Peterson
|
cd04db03de
|
mmap: do all internal arithmetic with Py_ssize_t while being very careful about overflow
|
2016-10-05 21:45:48 -07:00 |
Yury Selivanov
|
8dc3e43839
|
Issue #28372: Fix asyncio to support formatting of non-python coroutines
|
2016-10-05 19:32:49 -04:00 |
Yury Selivanov
|
0de3de6cbf
|
Issue #28371: Deprecate passing asyncio.Handles to run_in_executor.
|
2016-10-05 18:28:09 -04:00 |
Yury Selivanov
|
3e56ff0d08
|
Issue #28370: Speedup asyncio.StreamReader.readexactly
Patch by Коренберг Марк.
|
2016-10-05 18:01:12 -04:00 |
Yury Selivanov
|
5b8d4f97f8
|
Issue #28369: Raise an error when transport's FD is used with add_reader
|
2016-10-05 17:48:59 -04:00 |