index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #26499: Fixes to HTTPResponse.readline() and read1(), by Silent Ghost
Martin Panter
2016-03-17
2
-9/+78
*
faulthandler: Test Py_FatalError() with GIL released
Victor Stinner
2016-03-15
1
-0/+8
*
Issue #26523: The multiprocessing thread pool (multiprocessing.dummy.Pool) wa...
Antoine Pitrou
2016-03-15
1
-9/+16
*
#25320: Handle sockets in directories unittest discovery is scanning.
Robert Collins
2016-03-15
2
-0/+42
*
Fix test_venv on FreeBSD buildbot
Victor Stinner
2016-03-14
1
-1/+10
*
Skip test_site if USER_SITE cannot be created
Victor Stinner
2016-03-14
1
-2/+7
*
Issue #20556: Used specific assert methods in threading tests.
Serhiy Storchaka
2016-03-14
3
-23/+22
*
Issue #16181: cookiejar.http2time() now returns None if year is higher than d...
Berker Peksag
2016-03-14
2
-1/+8
*
Issue #26513: Fixes platform module detection of Windows Server
Steve Dower
2016-03-12
1
-1/+1
*
Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch by
Serhiy Storchaka
2016-03-12
2
-7/+25
*
Issue #20589: Fix test_pathlib
Victor Stinner
2016-03-11
1
-10/+10
*
Issue #20589: Invoking Path.owner() and Path.group() on Windows now raise
Berker Peksag
2016-03-11
2
-0/+15
*
Issue 25959: Explain in docstring that PhotoImage.zoom arguments are
Terry Jan Reedy
2016-03-11
1
-4/+8
*
Issue #26177: Fixed the keys() method for Canvas and Scrollbar widgets.
Serhiy Storchaka
2016-03-09
5
-138/+181
*
Issue #15068: Avoid creating a reference loop in fileinput.
Serhiy Storchaka
2016-03-08
1
-13/+15
*
Issue #25911: Tring to silence deprecation warnings in bytes path walk tests.
Serhiy Storchaka
2016-03-08
1
-0/+11
*
Backed out changeset f9e22717722d
Serhiy Storchaka
2016-03-08
1
-5/+1
|
\
|
*
Backed out changeset 19a3e0e664af
Serhiy Storchaka
2016-03-08
1
-5/+1
*
|
Issue #15068: Got rid of excessive buffering in the fileinput module.
Serhiy Storchaka
2016-03-08
2
-89/+142
*
|
Issues #23808, #25911: Trying to fix walk tests on Windows.
Serhiy Storchaka
2016-03-08
1
-1/+5
|
\
\
|
|
/
|
*
Issues #23808, #25911: Trying to fix walk tests on Windows.
Serhiy Storchaka
2016-03-08
1
-1/+5
*
|
Document another recipe for itertools: all_equal(). Inspired by David Beazley.
Raymond Hettinger
2016-03-07
1
-0/+8
*
|
Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.py
Berker Peksag
2016-03-06
1
-0/+5
*
|
Issue #2202: Fix UnboundLocalError in AbstractDigestAuthHandler.get_algorithm...
Berker Peksag
2016-03-06
2
-1/+14
*
|
Issue #26167: Backported copy tests.
Serhiy Storchaka
2016-03-06
1
-6/+49
*
|
Issue #26015: Added new tests for pickling iterators of mutable sequences.
Serhiy Storchaka
2016-03-06
5
-50/+214
*
|
Issue #25718: Fixed pickling and copying the accumulate() iterator with total...
Serhiy Storchaka
2016-03-06
1
-0/+10
*
|
Issue #26475: Fixed debugging output for regular expressions with the (?x) flag.
Serhiy Storchaka
2016-03-06
1
-3/+3
*
|
Fixed typo in pickle tests.
Serhiy Storchaka
2016-03-04
1
-2/+2
*
|
merge 3.4 (closes #26478)
Benjamin Peterson
2016-03-04
1
-0/+4
|
\
\
|
|
/
|
*
properly use the ObjArgs variant of CallMethod in dictview binary operations ...
Benjamin Peterson
2016-03-04
1
-0/+4
|
*
asyncio: Update 3.4 asyncio/test_tasks to upstream version
Yury Selivanov
2016-03-02
1
-1/+2
*
|
coroutines: Error when awaiting on coroutine that's being awaited
Yury Selivanov
2016-03-02
1
-0/+18
*
|
asyncio: Remove duplicate bind addresses in create_server.
Yury Selivanov
2016-03-02
2
-12/+18
*
|
inspect: Fix BoundArguments.apply_defaults to handle empty arguments
Yury Selivanov
2016-03-02
2
-2/+7
*
|
asyncio: Prevent StopIteration from being thrown into a Future
Yury Selivanov
2016-03-02
2
-0/+7
*
|
asyncio: Fix @coroutine to recognize CoroWrapper (issue #25647)
Yury Selivanov
2016-03-02
2
-1/+26
*
|
asyncio, selectors: Update to the upstream version
Yury Selivanov
2016-03-02
2
-3/+13
*
|
Issue #26464: Fix unicode_fast_translate() again
Victor Stinner
2016-03-01
1
-4/+10
*
|
Fix str.translate()
Victor Stinner
2016-03-01
1
-0/+4
*
|
Issue #26457: Fixed the subnets() methods in IP network classes for the case
Serhiy Storchaka
2016-03-01
2
-9/+39
*
|
Whitespace
Terry Jan Reedy
2016-03-01
1
-3/+3
*
|
Document maintenance of idlelib/help.html in idlelib.
Terry Jan Reedy
2016-03-01
1
-1/+24
*
|
Rebase the 3.x version of idlelib/help.html on the 3.5 version of
Terry Jan Reedy
2016-03-01
1
-73/+73
*
|
Issue #26385: Cleanup NamedTemporaryFile if open() fails, by SilentGhost
Martin Panter
2016-02-28
2
-2/+11
*
|
Issue #22836: Keep exception reports sensible despite errors
Martin Panter
2016-02-28
1
-2/+66
*
|
Issue #26390: Fix and test pbkdf2_hmac() parameter names
Martin Panter
2016-02-22
1
-0/+3
*
|
Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak.
Georg Brandl
2016-02-25
1
-2/+2
*
|
Issue #26402: Fix XML-RPC client retrying after server disconnection
Martin Panter
2016-02-25
2
-3/+40
*
|
Issue #25801: Fixed resource warnings in test_zipfile64.
Serhiy Storchaka
2016-02-25
1
-2/+6
[next]