summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Issue #20556: Used specific assert methods in threading tests.Serhiy Storchaka2016-03-143-23/+22
|\
| * Issue #20556: Used specific assert methods in threading tests.Serhiy Storchaka2016-03-143-23/+22
* | Issue #747320: Use email.utils.formatdate() to avoid code duplicationBerker Peksag2016-03-142-6/+16
* | Issue #16181: cookiejar.http2time() now returns None if year is higher than d...Berker Peksag2016-03-142-1/+8
|\ \ | |/
| * Issue #16181: cookiejar.http2time() now returns None if year is higher than d...Berker Peksag2016-03-142-1/+8
* | Issue #26513: Fixes platform module detection of Windows ServerSteve Dower2016-03-121-1/+1
|\ \ | |/
| * Issue #26513: Fixes platform module detection of Windows ServerSteve Dower2016-03-121-1/+1
* | Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch bySerhiy Storchaka2016-03-122-7/+33
|\ \ | |/
| * Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch bySerhiy Storchaka2016-03-122-7/+25
* | Revert change 291d47954618Victor Stinner2016-03-121-2/+2
* | Merge 3.5Victor Stinner2016-03-111-10/+10
|\ \ | |/
| * Issue #20589: Fix test_pathlibVictor Stinner2016-03-111-10/+10
* | Always test datetime.strftime("%4Y")Victor Stinner2016-03-111-2/+2
* | Add Mock.assert_called()Victor Stinner2016-03-112-0/+39
* | Issue #20589: Invoking Path.owner() and Path.group() on Windows now raiseBerker Peksag2016-03-112-0/+15
|\ \ | |/
| * Issue #20589: Invoking Path.owner() and Path.group() on Windows now raiseBerker Peksag2016-03-112-0/+15
* | Merge with 3.5Terry Jan Reedy2016-03-111-4/+8
|\ \ | |/
| * Issue 25959: Explain in docstring that PhotoImage.zoom arguments areTerry Jan Reedy2016-03-111-4/+8
* | Issue #26177: Fixed the keys() method for Canvas and Scrollbar widgets.Serhiy Storchaka2016-03-095-138/+181
|\ \ | |/
| * Issue #26177: Fixed the keys() method for Canvas and Scrollbar widgets.Serhiy Storchaka2016-03-095-138/+181
* | Issue #21042: Return full path in ctypes.util.find_library() on LinuxMartin Panter2016-03-102-18/+26
* | Issue #15068: Avoid creating a reference loop in fileinput.Serhiy Storchaka2016-03-081-13/+15
|\ \ | |/
| * Issue #15068: Avoid creating a reference loop in fileinput.Serhiy Storchaka2016-03-081-13/+15
* | Issue #25911: Tring to silence deprecation warnings in bytes path walk tests.Serhiy Storchaka2016-03-081-0/+11
|\ \ | |/
| * Issue #25911: Tring to silence deprecation warnings in bytes path walk tests.Serhiy Storchaka2016-03-081-0/+11
* | Backed out changeset da020e408c7fSerhiy Storchaka2016-03-081-5/+1
|\ \ | |/
| * Backed out changeset f9e22717722dSerhiy Storchaka2016-03-081-5/+1
| |\
| | * Backed out changeset 19a3e0e664afSerhiy Storchaka2016-03-081-5/+1
* | | Issue #15068: Got rid of excessive buffering in fileinput.Serhiy Storchaka2016-03-082-94/+151
|\ \ \ | |/ /
| * | Issue #15068: Got rid of excessive buffering in the fileinput module.Serhiy Storchaka2016-03-082-89/+142
* | | Issues #23808, #25911: Trying to fix walk tests on Windows.Serhiy Storchaka2016-03-081-1/+5
|\ \ \ | |/ /
| * | Issues #23808, #25911: Trying to fix walk tests on Windows.Serhiy Storchaka2016-03-081-1/+5
| |\ \ | | |/
| | * Issues #23808, #25911: Trying to fix walk tests on Windows.Serhiy Storchaka2016-03-081-1/+5
* | | MergeRaymond Hettinger2016-03-071-0/+8
|\ \ \ | |/ /
| * | Document another recipe for itertools: all_equal(). Inspired by David Beazley.Raymond Hettinger2016-03-071-0/+8
* | | Closes #19475: Added timespec to the datetime.isoformat() method.Alexander Belopolsky2016-03-062-21/+78
* | | Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.pyBerker Peksag2016-03-061-0/+5
|\ \ \ | |/ /
| * | Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.pyBerker Peksag2016-03-061-0/+5
* | | Issue #2202: Fix UnboundLocalError in AbstractDigestAuthHandler.get_algorithm...Berker Peksag2016-03-062-1/+14
|\ \ \ | |/ /
| * | Issue #2202: Fix UnboundLocalError in AbstractDigestAuthHandler.get_algorithm...Berker Peksag2016-03-062-1/+14
| * | Issue #26167: Backported copy tests.Serhiy Storchaka2016-03-061-6/+49
* | | Issue #26167: Minimized overhead in copy.copy() and copy.deepcopy().Serhiy Storchaka2016-03-062-72/+98
* | | Issue #26015: Added new tests for pickling iterators of mutable sequences.Serhiy Storchaka2016-03-065-50/+214
|\ \ \ | |/ /
| * | Issue #26015: Added new tests for pickling iterators of mutable sequences.Serhiy Storchaka2016-03-065-50/+214
* | | Issue #25718: Fixed pickling and copying the accumulate() iterator with total...Serhiy Storchaka2016-03-061-0/+10
|\ \ \ | |/ /
| * | Issue #25718: Fixed pickling and copying the accumulate() iterator with total...Serhiy Storchaka2016-03-061-0/+10
* | | Issue #26475: Fixed debugging output for regular expressions with the (?x) flag.Serhiy Storchaka2016-03-061-3/+3
|\ \ \ | |/ /
| * | Issue #26475: Fixed debugging output for regular expressions with the (?x) flag.Serhiy Storchaka2016-03-061-3/+3
* | | Issue #26482: Allowed pickling recursive dequeues.Serhiy Storchaka2016-03-061-32/+36
* | | Issue #17940: Remove redundant code from _Section.format_help()Berker Peksag2016-03-051-2/+0