summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue 27366: PEP 487 docs updatesNick Coghlan2016-07-312-0/+16
| | | | | - Porting note for type keyword arg handling - __init_subclass__ note regarding metaclass hint
* Issue 24773: Use the standard Asia/Tehran name in the Iran test.Alexander Belopolsky2016-07-301-1/+1
|
* Issue #27652: Expose ESHUTDOWN conditionallyBerker Peksag2016-07-301-0/+2
| | | | | | ESHUTDOWN is also exposed conditionally in Modules/errnomodule.c. Patch by Ed Schouten.
* Issue #27366: Tweak PEP 487 documentationBerker Peksag2016-07-303-26/+30
| | | | | | * Added versionadded directives * Deleted duplicate sentence from __init_subclass__ docstring * Modernized tests
* (merge from 3.5) Issue #27453: CPP invocation in configure must use CPPFLAGS.Xavier de Gaye2016-07-303-2/+5
|\ | | | | | | Patch by Chi Hsuan Yen.
| * Issue #27453: CPP invocation in configure must use CPPFLAGS.Xavier de Gaye2016-07-304-2/+6
| | | | | | | | Patch by Chi Hsuan Yen.
* | Issue #27366: Implement PEP 487Nick Coghlan2016-07-309-24/+411
| | | | | | | | | | | | - __init_subclass__ called when new subclasses defined - __set_name__ called when descriptors are part of a class definition
* | Merge from 3.5Berker Peksag2016-07-301-1/+1
|\ \ | |/
| * Silence another "default role used" warning in typing.rstBerker Peksag2016-07-301-1/+1
| | | | | | | | This should make ware-docs green again.
* | Fix "default role used" warning in shlex.rstBerker Peksag2016-07-301-1/+1
| |
* | Fix whitespace.Guido van Rossum2016-07-291-1/+1
|\ \ | |/
| * Fix whitespace.Guido van Rossum2016-07-291-1/+1
| |
* | Expand documentation about type aliases and NewType in the typing module ↵Guido van Rossum2016-07-291-1/+96
|\ \ | |/ | | | | | | | | (merge 3.5 -> 3.6). By Michael Lee.
| * Expand documentation about type aliases and NewType in the typing module.Guido van Rossum2016-07-291-1/+96
| | | | | | | | By Michael Lee.
* | Closes #1521950: Made shlex parsing more shell-like.Vinay Sajip2016-07-293-32/+265
| |
* | Issue #17596: MINGW: add wincrypt.h in Python/random.cMartin Panter2016-07-292-0/+5
| | | | | | | | Based on patch by Roumen Petrov.
* | Issue #26462: Merge code block fixes from 3.5Martin Panter2016-07-2947-128/+329
|\ \ | |/
| * Issue #26462: Doc: reduce literal_block warnings, fix syntax highlighting.Martin Panter2016-07-2647-128/+329
| | | | | | | | Patch by Julien Palard.
* | Merge with 3.5Zachary Ware2016-07-291-1/+1
|\ \ | |/
| * Correct typo in Windows docs.Zachary Ware2016-07-291-1/+1
| | | | | | | | Found by Jack Copper on docs@
* | Issue #27647: Update Windows build to Tcl/Tk 8.6.6Zachary Ware2016-07-284-6/+8
| |
* | Merge 3.5 (issue #27404)Victor Stinner2016-07-281-8/+8
|\ \ | |/
| * NEWS: tag security related changes with [Security] prefixVictor Stinner2016-07-281-9/+9
| | | | | | | | Issue #27404.
* | Issue #23943: Merge spelling fixes from 3.5Martin Panter2016-07-281-2/+2
|\ \ | |/
| * Issue #23943: Restore extra fixes lost in merge 4fb2075952a4Martin Panter2016-07-281-2/+2
| |
* | Issue #27620: Make htest box respond to <Return> and <Escape>.Terry Jan Reedy2016-07-281-6/+12
| |
* | Issue #27620: Mark the default action button as the default.Terry Jan Reedy2016-07-281-1/+1
| |
* | Issue #27626: Further spelling fixes for 3.6Martin Panter2016-07-282-2/+2
| |
* | Issue #27626: Merge spelling fixes from 3.5Martin Panter2016-07-2833-48/+48
|\ \ | |/
| * Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-2833-48/+48
| | | | | | | | Based on patch by Ville Skyttä.
* | Issue #27490: Merge pgen cross-compile logic from 3.5Martin Panter2016-07-285-1/+12
|\ \ | |/
| * Issue #27490: Do not build pgen when cross-compilingMartin Panter2016-07-285-1/+12
| | | | | | | | | | | | | | | | The dependendency on the $(PGEN) variable must only be set when not cross-compiling. When cross-compiling, $(PGEN) will not be used, so no need to build it. Patch by Thomas Perl.
* | Merge 3.5 (issue #11048)Victor Stinner2016-07-271-2/+4
|\ \ | |/
| * ctypes: fix CThunkObject_new()Victor Stinner2016-07-271-2/+4
| | | | | | | | | | | | | | | | | | | | * Initialize restype and flags fields to fix a crash when Python runs on a read-only file system * Use Py_ssize_t type rather than int for the "i" iterator variable * Reorder assignements to be able to more easily check if all fields are initialized Issue #11048. Initial patch written by Marcin Bachry.
* | Issue #27633: Merge from 3.5Berker Peksag2016-07-271-1/+1
|\ \ | |/
| * Issue #27633: Fix usage of versionchanged directive in email.parser.rstBerker Peksag2016-07-271-1/+1
| | | | | | | | Patch by Florian Preinstorfer.
* | Issue #24773: Fixed tests failures on systems with 32-bit time_t.Alexander Belopolsky2016-07-261-0/+5
| | | | | | | | | | | | | | Several 32-bit systems have issues with transitions in the year 2037. This is a bug in the system C library since time_t does not overflow until 2038, but let's skip tests starting from 2037 to work around those bugs.
* | (merge from 3.5) Issue #26662: Set PYTHON_FOR_GEN in configureXavier de Gaye2016-07-265-164/+108
|\ \ | |/ | | | | as the Python program to be used for file generation during the build.
| * Issue #26662: Set PYTHON_FOR_GEN in configureXavier de Gaye2016-07-265-164/+108
| | | | | | | | as the Python program to be used for file generation during the build.
* | Issue #26638: Merge CLI link fix from 3.5Martin Panter2016-07-261-1/+1
|\ \ | |/
| * Issue #26638: Don’t link 2to3 -l option to the tarfile -l optionMartin Panter2016-07-261-1/+1
| |
* | Issue #27620: Escape key closes Query box as cancelled.Terry Jan Reedy2016-07-262-3/+4
| |
* | Issue 24773: Added a time_t overflow check.Alexander Belopolsky2016-07-251-1/+8
| |
* | Issue #24137, issue #27611: Restore tkinter after test_idle.Terry Jan Reedy2016-07-251-0/+2
| |
* | Issue #1621: Avoid signed overflow in list and tuple operationsMartin Panter2016-07-254-11/+28
| | | | | | | | Patch by Xiang Zhang.
* | Issue #27581: Merge overflow fix from 3.5Martin Panter2016-07-252-4/+8
|\ \ | |/
| * Issue #27581: Don’t rely on overflow wrapping in PySequence_Tuple()Martin Panter2016-07-252-4/+8
| | | | | | | | Patch by Xiang Zhang.
* | Issue #19198: IDLE: tab after initial whitespace should tab, not autocomplete.Terry Jan Reedy2016-07-253-7/+12
| | | | | | | | Fixes problem with writing docstrings at lease twice indented.
* | Issue #7063: Remove dead code from array slice handlingMartin Panter2016-07-252-47/+11
| | | | | | | | Patch by Chuck.
* | Issue #27601: Merge from 3.5Berker Peksag2016-07-251-11/+11
|\ \ | |/