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 #23566: enable(), register(), dump_traceback() and dump_traceback_later()
Victor Stinner
2015-03-12
1
-57/+101
*
|
Merge 3.4 (test_os)
Victor Stinner
2015-03-12
1
-37/+70
|
\
\
|
|
/
|
*
Issue #23605: Refactor os.walk() tests to also run them on os.fwalk()
Victor Stinner
2015-03-12
1
-37/+70
*
|
Issue #22928: Disabled HTTP header injections in http.client.
Serhiy Storchaka
2015-03-12
2
-0/+94
|
\
\
|
|
/
|
*
Issue #22928: Disabled HTTP header injections in http.client.
Serhiy Storchaka
2015-03-12
2
-0/+94
*
|
Issue #23605: os.walk() doesn't need to call entry.is_symlink() if followlinks
Victor Stinner
2015-03-12
1
-2/+3
*
|
Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet.
Serhiy Storchaka
2015-03-11
1
-0/+20
|
\
\
|
|
/
|
*
Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet.
Serhiy Storchaka
2015-03-11
1
-0/+20
*
|
Close issue23486: performance boost for enum member lookup
Ethan Furman
2015-03-11
1
-1/+10
*
|
Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded with
Serhiy Storchaka
2015-03-11
3
-5/+3
|
\
\
|
|
/
|
*
Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded with
Serhiy Storchaka
2015-03-11
3
-5/+3
*
|
Close issue23467: add %r compatibility to bytes and bytearray
Ethan Furman
2015-03-11
1
-0/+5
*
|
Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob...
Antoine Pitrou
2015-03-10
2
-2/+18
|
\
\
|
|
/
|
*
Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob...
Antoine Pitrou
2015-03-10
2
-2/+18
*
|
Issue #22028: Ensure mimetypes will not open registry keys with embedded nulls
Steve Dower
2015-03-10
1
-1/+2
|
\
\
|
|
/
|
*
Issue #22028: Ensure mimetypes will not open registry keys with embedded nulls
Steve Dower
2015-03-10
1
-1/+2
*
|
Issue #23606: Disable ctypes.util.find_library("c") on Windows so tests are s...
Steve Dower
2015-03-10
1
-1/+3
*
|
Merge 3.4 (asyncio)
Victor Stinner
2015-03-10
1
-2/+5
|
\
\
|
|
/
|
*
asyncio: Fix repr(BaseSubprocessTransport) if it didn't start yet
Victor Stinner
2015-03-10
1
-2/+5
*
|
Issue #23605: os.walk() now calls os.scandir() instead of os.listdir().
Victor Stinner
2015-03-10
1
-15/+36
*
|
merge 3.4
Benjamin Peterson
2015-03-09
1
-5/+8
|
\
\
|
|
/
|
*
fix up import style
Benjamin Peterson
2015-03-09
1
-5/+8
*
|
Merge.
Larry Hastings
2015-03-09
1
-0/+6
|
\
\
|
*
|
Issue #22980: Under Linux, C extensions now include bitness in the file name,
Antoine Pitrou
2015-03-08
1
-0/+6
*
|
|
Release bump for 3.5.0a2.
v3.5.0a2
Larry Hastings
2015-03-08
3
-5/+5
|
/
/
*
|
Issue #21619: Cleaned up test_broken_pipe_cleanup.
Serhiy Storchaka
2015-03-08
1
-10/+8
|
\
\
|
|
/
|
*
Issue #21619: Cleaned up test_broken_pipe_cleanup.
Serhiy Storchaka
2015-03-08
1
-10/+8
*
|
Suppress assert dialogs in test_os
Steve Dower
2015-03-08
1
-10/+14
*
|
Suppress assert dialogs in test_cmd_line.
Steve Dower
2015-03-08
1
-1/+2
*
|
Issue #22524: New os.scandir() function, part of the PEP 471: "os.scandir()
Victor Stinner
2015-03-08
1
-0/+224
*
|
Issue #20876: correctly close temporary file in test.support.fs_is_case_insen...
Antoine Pitrou
2015-03-07
1
-10/+9
|
\
\
|
|
/
|
*
Issue #20876: correctly close temporary file in test.support.fs_is_case_insen...
Antoine Pitrou
2015-03-07
1
-10/+9
*
|
Issue #23103: Reduced the memory consumption of IPv4Address and IPv6Address.
Serhiy Storchaka
2015-03-07
2
-13/+19
*
|
Issue #21793: BaseHTTPRequestHandler again logs response code as numeric,
Serhiy Storchaka
2015-03-07
2
-49/+94
*
|
Issue #22853: Added regression test for using multiprocessing.Queue at import
Serhiy Storchaka
2015-03-06
1
-0/+21
|
\
\
|
|
/
|
*
Issue #22853: Added regression test for using multiprocessing.Queue at import
Serhiy Storchaka
2015-03-06
1
-0/+21
*
|
merge 3.4
Benjamin Peterson
2015-03-06
1
-5/+0
|
\
\
|
|
/
|
*
remove redundant test
Benjamin Peterson
2015-03-06
1
-5/+0
*
|
merge 3.4 (#23590)
Benjamin Peterson
2015-03-06
1
-0/+6
|
\
\
|
|
/
|
*
fix potential refleak in PyFloat_AsDouble (closes #23590)
Benjamin Peterson
2015-03-06
1
-0/+6
*
|
Issue #22936: Allow showing local variables in unittest errors.
Robert Collins
2015-03-06
7
-25/+97
*
|
unittest: Trivial typo fix.
Robert Collins
2015-03-05
1
-1/+1
*
|
Issue #22936: Make it possible to show local variables in tracebacks.
Robert Collins
2015-03-05
2
-24/+92
*
|
merge 3.4
Benjamin Peterson
2015-03-05
2
-3/+3
|
\
\
|
|
/
|
*
use _import_symbols to import VERIFY_* constants
Benjamin Peterson
2015-03-05
1
-2/+1
|
*
adjust test_crl_check for trusted first being default
Benjamin Peterson
2015-03-05
1
-1/+2
*
|
merge 3.4
Benjamin Peterson
2015-03-05
1
-2/+3
|
\
\
|
|
/
|
*
expose X509_V_FLAG_TRUSTED_FIRST
Benjamin Peterson
2015-03-05
1
-2/+3
*
|
Remaining fallout from 17911
Robert Collins
2015-03-05
3
-28/+17
*
|
Merge 3.4 (test_subprocess)
Victor Stinner
2015-03-05
1
-6/+9
|
\
\
|
|
/
[prev]
[next]