summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Closes Issue#22241: timezone.utc name is now plain 'UTC', not 'UTC-00:00'.Alexander Belopolsky2015-09-065-8/+23
* Fix, refactor and extend tests for shutil.make_archive().Serhiy Storchaka2015-09-061-89/+83
|\
| * Fix, refactor and extend tests for shutil.make_archive().Serhiy Storchaka2015-09-061-89/+83
| |\
| | * Fix, refactor and extend tests for shutil.make_archive().Serhiy Storchaka2015-09-061-89/+83
* | | Use support.change_cwd() in tests.Serhiy Storchaka2015-09-069-104/+34
|\ \ \ | |/ /
| * | Use support.change_cwd() in tests.Serhiy Storchaka2015-09-069-104/+34
| |\ \ | | |/
| | * Use support.change_cwd() in tests.Serhiy Storchaka2015-09-068-99/+33
* | | Issue #24917: Backed out changeset 09b62202d9b7Steve Dower2015-09-063-20/+0
|\ \ \ | |/ /
| * | Issue #24917: Backed out changeset 09b62202d9b7Steve Dower2015-09-063-20/+0
| |\ \ | | |/
| | * Backed out changeset: a29b49d57769Steve Dower2015-09-062-8/+0
* | | Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.Steve Dower2015-09-063-0/+20
|\ \ \ | |/ /
| * | Null merge with 3.4Steve Dower2015-09-060-0/+0
| |\ \ | | |/
| | * Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.Steve Dower2015-09-062-0/+8
| * | Merge from 3.5.0 release branchSteve Dower2015-09-063-0/+20
| |\ \
| | * | Issue #24917: Moves NEWS entry under Library.Steve Dower2015-09-051-2/+2
| | * | Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.Steve Dower2015-09-053-0/+20
* | | | mergeRaymond Hettinger2015-09-061-6/+10
|\ \ \ \ | |/ / /
| * | | Prevent reentrant badness by deferring the decrefs as long as possible.Raymond Hettinger2015-09-061-6/+10
* | | | Merge with 3.5Terry Jan Reedy2015-09-053-0/+18
|\ \ \ \ | |/ / /
| * | | merge from 3.4Terry Jan Reedy2015-09-053-0/+18
| |\ \ \ | | | |/ | | |/|
| | * | Issue #16180: Exit pdb if file has syntax error, instead of trapping userTerry Jan Reedy2015-09-053-0/+18
* | | | Issue #24912: Prevent __class__ assignment to immutable built-in objects. (Me...Guido van Rossum2015-09-053-0/+106
|\ \ \ \ | |/ / /
| * | | Issue #24912: Prevent __class__ assignment to immutable built-in objects. (Me...Guido van Rossum2015-09-053-0/+106
| |\ \ \ | | | |/ | | |/|
| | * | Issue #24912: Prevent __class__ assignment to immutable built-in objects.Guido van Rossum2015-09-053-0/+106
* | | | Issue #24910: Windows MSIs now have unique display names.Steve Dower2015-09-0512-11/+13
|\ \ \ \ | |/ / /
| * | | Issue #24910: Windows MSIs now have unique display names.Steve Dower2015-09-0512-11/+13
* | | | Issue #23517: Skip a datetime test on WindowsVictor Stinner2015-09-051-3/+3
* | | | Issue #23517: Fix implementation of the ROUND_HALF_UP rounding mode inVictor Stinner2015-09-044-39/+42
* | | | Null merge (3.5.1 -> default).Guido van Rossum2015-09-040-0/+0
|\ \ \ \ | |/ / /
| * | | Null merge (Larry's 3.5 -> 3.5.1).Guido van Rossum2015-09-040-0/+0
| |\ \ \ | | |/ /
| | * | Fix issue #24635.Guido van Rossum2015-09-043-8/+27
* | | | Issue #24635: Fixed flakiness in test_typing.py. (Merge from 3.5.)Guido van Rossum2015-09-043-8/+27
|\ \ \ \ | |/ / /
| * | | Issue #24635: Fixed flakiness in test_typing.py.Guido van Rossum2015-09-043-8/+27
* | | | Merge 3.5 (create_stdio)Victor Stinner2015-09-043-42/+44
|\ \ \ \ | |/ / /
| * | | Merge 3.4 (create_stdio)Victor Stinner2015-09-043-42/+44
| |\ \ \ | | | |/ | | |/|
| | * | Fix race condition in create_stdio()Victor Stinner2015-09-043-40/+42
* | | | Merge: #24998: fix cut and paste error in subprocess example.R David Murray2015-09-041-1/+1
|\ \ \ \ | |/ / /
| * | | Merge: #24998: fix cut and paste error in subprocess example.R David Murray2015-09-041-1/+1
| |\ \ \ | | |/ /
| | * | #24998: fix cut and paste error in subprocess example.R David Murray2015-09-041-1/+1
* | | | Merge with 3.5Terry Jan Reedy2015-09-040-0/+0
|\ \ \ \ | |/ / /
| * | | Merge with 3.4Terry Jan Reedy2015-09-040-0/+0
| |\ \ \ | | |/ /
| | * | Issue #24745: Prevent IDLE initialization crash with Tk 8.4; patch by Ned Deily.Terry Jan Reedy2015-09-041-7/+11
* | | | test_time: add tests on HALF_UP rounding mode for _PyTime_ObjectToTime_t() andVictor Stinner2015-09-041-40/+90
* | | | Merge with 3.5Terry Jan Reedy2015-09-040-0/+0
|\ \ \ \ | |/ / /
| * | | Merge 3.5.0 into 3.5.1Terry Jan Reedy2015-09-040-0/+0
| |\ \ \ | | | |/ | | |/|
| | * | Merged in storchaka/cpython350 (pull request #13)Larry Hastings2015-09-043-1/+21
| | |\ \
| | * | | Issue #21192: Change 'RUN' back to 'RESTART' when running editor file.Terry Jan Reedy2015-09-041-1/+1
* | | | | Issue #24986: Merge with 3.5Zachary Ware2015-09-042-11/+14
|\ \ \ \ \ | |/ / / /
| * | | | Issue #24986: Save some bandwidth from svn.python.orgZachary Ware2015-09-042-11/+14
* | | | | Fixed merge error.Serhiy Storchaka2015-09-041-6/+0
|\ \ \ \ \ | |/ / / /