| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Version bump for 3.6.0b3v3.6.0b3 | Ned Deily | 2016-11-01 | 1 | -1/+1 |
| | | |||||
| * | Issue #28248: merge from 3.5 | Ned Deily | 2016-10-31 | 1 | -1/+1 |
| |\ | |||||
| | * | Issue #28248: Update macOS installer build to use OpenSSL 1.0.2j. | Ned Deily | 2016-10-31 | 1 | -3/+1 |
| | | | | | | | | | Original patch by Mariatta Wijaya. | ||||
| * | | Issue #28028: Update OS X installers to use SQLite 3.14.2. | Ned Deily | 2016-10-31 | 1 | -1/+1 |
| | | | | | | | | | Patch by Mariatta Wijaya. | ||||
| * | | Issue 28128: Print out better error/warning messages for invalid string ↵ | Eric V. Smith | 2016-10-31 | 1 | -0/+4 |
| | | | | | | | | | escapes. Backport to 3.6. | ||||
| * | | Issue #27517: LZMA compressor and decompressor no longer raise exceptions if | Serhiy Storchaka | 2016-10-31 | 2 | -0/+4 |
| |\ \ | |/ | | | | | given empty data twice. Patch by Benjamin Fogle. | ||||
| | * | Issue #27517: LZMA compressor and decompressor no longer raise exceptions if | Serhiy Storchaka | 2016-10-31 | 2 | -0/+4 |
| | | | | | | | | | given empty data twice. Patch by Benjamin Fogle. | ||||
| * | | Issue #28549: Fixed segfault in curses's addch() with ncurses6. | Serhiy Storchaka | 2016-10-30 | 1 | -0/+2 |
| |\ \ | |/ | |||||
| | * | Issue #28549: Fixed segfault in curses's addch() with ncurses6. | Serhiy Storchaka | 2016-10-30 | 1 | -0/+2 |
| | | | |||||
| * | | Issue #28449: tarfile.open() with mode "r" or "r:" now tries to open a tar | Serhiy Storchaka | 2016-10-30 | 1 | -1/+4 |
| |\ \ | |/ | | | | | | | file with compression before trying to open it without compression. Otherwise it had 50% chance failed with ignore_zeros=True. | ||||
| | * | Issue #28449: tarfile.open() with mode "r" or "r:" now tries to open a tar | Serhiy Storchaka | 2016-10-30 | 1 | -0/+4 |
| | | | | | | | | | | | file with compression before trying to open it without compression. Otherwise it had 50% chance failed with ignore_zeros=True. | ||||
| * | | - Issue #23262: The webbrowser module now supports Firefox 36+ and derived | Serhiy Storchaka | 2016-10-30 | 1 | -0/+3 |
| |\ \ | |/ | | | | | browsers. Based on patch by Oleg Broytman. | ||||
| | * | Issue #23262: The webbrowser module now supports Firefox 36+ and derived | Serhiy Storchaka | 2016-10-30 | 1 | -0/+3 |
| | | | | | | | | | browsers. Based on patch by Oleg Broytman. | ||||
| * | | Issue #27939: Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale caused | Serhiy Storchaka | 2016-10-30 | 1 | -0/+4 |
| |\ \ | |/ | | | | | | | by representing the scale as float value internally in Tk. tkinter.IntVar now works if float value is set to underlying Tk variable. | ||||
| | * | Issue #27939: Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale caused | Serhiy Storchaka | 2016-10-30 | 1 | -0/+4 |
| | | | | | | | | | | | by representing the scale as float value internally in Tk. tkinter.IntVar now works if float value is set to underlying Tk variable. | ||||
| * | | Merge from 3.5. | Serhiy Storchaka | 2016-10-30 | 1 | -3/+0 |
| |\ \ | |/ | |||||
| | * | Backed out changeset 9f7505019767 (issue #27275). | Serhiy Storchaka | 2016-10-30 | 1 | -3/+0 |
| | | | |||||
| * | | Issue #18844: Make the various ways for specifing weights produce the same ↵ | Raymond Hettinger | 2016-10-29 | 1 | -0/+3 |
| | | | | | | | | | results. | ||||
| * | | Issue #28444: Merge with 3.5. | Xavier de Gaye | 2016-10-29 | 1 | -0/+2 |
| |\ \ | |/ | |||||
| | * | Issue #28444: Fix missing extensions modules when cross compiling. | Xavier de Gaye | 2016-10-29 | 1 | -0/+2 |
| | | | |||||
| * | | Issue #28544: Implement asyncio.Task in C. | Yury Selivanov | 2016-10-28 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | This implementation provides additional 10-20% speed boost for asyncio programs. The patch also fixes _asynciomodule.c to use Arguments Clinic, and makes '_schedule_callbacks' an overridable method (as it was in 3.5). | ||||
| * | | Issue #28522: Fixes mishandled buffer reallocation in getpathp.c | Steve Dower | 2016-10-27 | 1 | -0/+5 |
| | | | |||||
| * | | Issue #28426: Deprecated undocumented functions PyUnicode_AsEncodedObject(), | Serhiy Storchaka | 2016-10-27 | 1 | -0/+7 |
| | | | | | | | | | | | PyUnicode_AsDecodedObject(), PyUnicode_AsDecodedUnicode() and PyUnicode_AsEncodedUnicode(). | ||||
| * | | Issue #28509: dict.update() no longer allocate unnecessary large memory | INADA Naoki | 2016-10-27 | 1 | -0/+2 |
| | | | |||||
| * | | Issue #26240: Merge subprocess doc string from 3.5 into 3.6 | Martin Panter | 2016-10-25 | 1 | -0/+1 |
| |\ \ | |/ | |||||
| | * | Issue #26240: Clean up the subprocess module doc string | Martin Panter | 2016-10-25 | 1 | -0/+1 |
| | | | | | | | | | Patch by Tim Mitchell. | ||||
| * | | Issue #27275: Fixed implementation of pop() and popitem() methods in | Serhiy Storchaka | 2016-10-25 | 1 | -0/+3 |
| |\ \ | |/ | | | | | subclasses of accelerated OrderedDict. | ||||
| | * | Issue #27275: Fixed implementation of pop() and popitem() methods in | Serhiy Storchaka | 2016-10-25 | 1 | -0/+3 |
| | | | | | | | | | subclasses of accelerated OrderedDict. | ||||
| * | | Issue #28255: calendar.TextCalendar().prmonth() no longer prints a space | Serhiy Storchaka | 2016-10-25 | 1 | -0/+4 |
| |\ \ | |/ | | | | | | | at the start of new line after printing a month's calendar. Patch by Xiang Zhang. | ||||
| | * | Issue #28255: calendar.TextCalendar().prmonth() no longer prints a space | Serhiy Storchaka | 2016-10-25 | 1 | -0/+4 |
| | | | | | | | | | | | at the start of new line after printing a month's calendar. Patch by Xiang Zhang. | ||||
| * | | Issue #20491: The textwrap.TextWrapper class now honors non-breaking spaces. | Serhiy Storchaka | 2016-10-25 | 1 | -0/+3 |
| |\ \ | |/ | | | | | Based on patch by Kaarle Ritvanen. | ||||
| | * | Issue #20491: The textwrap.TextWrapper class now honors non-breaking spaces. | Serhiy Storchaka | 2016-10-25 | 1 | -0/+3 |
| | | | | | | | | | Based on patch by Kaarle Ritvanen. | ||||
| * | | Issue #28353: os.fwalk() no longer fails on broken links. | Serhiy Storchaka | 2016-10-25 | 1 | -0/+2 |
| |\ \ | |/ | |||||
| | * | Issue #28353: os.fwalk() no longer fails on broken links. | Serhiy Storchaka | 2016-10-25 | 1 | -0/+2 |
| | | | |||||
| * | | Issue #28430: Fix iterator of C implemented asyncio.Future doesn't | INADA Naoki | 2016-10-25 | 1 | -0/+3 |
| | | | | | | | | | accept non-None value is passed to it.send(val). | ||||
| * | | Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug ↵ | Serhiy Storchaka | 2016-10-25 | 1 | -0/+3 |
| |\ \ | |/ | | | | | build. | ||||
| | * | Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug ↵ | Serhiy Storchaka | 2016-10-25 | 1 | -0/+3 |
| | |\ | | | | | | | | | | build. | ||||
| | | * | Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug ↵ | Serhiy Storchaka | 2016-10-25 | 1 | -0/+3 |
| | | | | | | | | | | | | | build. | ||||
| * | | | Issue #27025: Generated names for Tkinter widgets now start by the "!" prefix | Serhiy Storchaka | 2016-10-25 | 1 | -0/+6 |
| | | | | | | | | | | | | | for readability (was "`"). | ||||
| * | | | Issue #28517: Fixed of-by-one error in the peephole optimizer that caused | Serhiy Storchaka | 2016-10-25 | 1 | -0/+3 |
| | | | | | | | | | | | | | keeping unreachable code. | ||||
| * | | | Issue #25464: Fixed HList.header_exists() in tkinter.tix module by addin | Serhiy Storchaka | 2016-10-24 | 1 | -0/+3 |
| |\ \ \ | |/ / | | | | | | | a workaround to Tix library bug. | ||||
| | * | | Issue #25464: Fixed HList.header_exists() in tkinter.tix module by addin | Serhiy Storchaka | 2016-10-24 | 1 | -0/+3 |
| | | | | | | | | | | | | | a workaround to Tix library bug. | ||||
| * | | | Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive. | Serhiy Storchaka | 2016-10-23 | 1 | -0/+2 |
| |\ \ \ | |/ / | |||||
| | * | | Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive. | Serhiy Storchaka | 2016-10-23 | 1 | -0/+2 |
| | | | | |||||
| * | | | Issue #25953: re.sub() now raises an error for invalid numerical group | Serhiy Storchaka | 2016-10-23 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | | | reference in replacement template even if the pattern is not found in the string. Error message for invalid group reference now includes the group index and the position of the reference. Based on patch by SilentGhost. | ||||
| * | | | Issue #28435: Merge urllib test fixes from 3.5 into 3.6 | Martin Panter | 2016-10-22 | 1 | -0/+1 |
| |\ \ \ | |/ / | |||||
| | * | | Issue #28435: Avoid no_proxy environment variable interfering with tests | Martin Panter | 2016-10-22 | 1 | -0/+1 |
| | | | | | | | | | | | | | Patch by Piotr Szczepaniak. | ||||
| * | | | Merge 3.5 (issue #26796) | Yury Selivanov | 2016-10-21 | 1 | -0/+4 |
| |\ \ \ | |/ / | |||||
| | * | | Issue #26796: Don't configure the number of workers for default threadpool ↵ | Yury Selivanov | 2016-10-21 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | executor. Initial patch by Hans Lawrenz. | ||||
| * | | | Merge 3.5 (issue #26923) | Yury Selivanov | 2016-10-21 | 1 | -0/+4 |
| |\ \ \ | |/ / | |||||
