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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #17557: Fix os.getgroups() to work with the modified behavior of
Ned Deily
2013-08-02
3
-0/+34
*
Issue #17899: Fix rare file descriptor leak in os.listdir().
Larry Hastings
2013-08-02
2
-0/+13
*
Issue #18589: fix hyperlinking of type slots (tp_*)
Antoine Pitrou
2013-08-01
9
-192/+192
*
Initialize utime with 0. It fixes a couple of compiler warnung:
Christian Heimes
2013-07-31
1
-0/+1
*
merge
Christian Heimes
2013-07-31
7
-16/+20
|
\
|
*
Issue #18573: More copy-paste fixes to assertWarns entry.
Terry Jan Reedy
2013-07-31
1
-3/+3
|
*
Issue #15494: Install new test/support directory.
Ned Deily
2013-07-30
1
-1/+1
|
*
#16273: Fix tutorial discussion of seek/tell (opaque text-mode values).
R David Murray
2013-07-30
1
-4/+9
|
*
#18601: fix error made when difflib example was converted to use 'with'.
R David Murray
2013-07-30
1
-1/+1
|
*
#18584: s/testcleanup/testsetup/ until we switch to Sphinx 1.1.
R David Murray
2013-07-30
2
-2/+2
|
*
Simplify example of PyErr_Fetch() use
Antoine Pitrou
2013-07-30
1
-5/+4
*
|
Silence warning about set but unused variable inside compile_atom() in non-de...
Christian Heimes
2013-07-31
1
-0/+1
|
/
*
Add simple test for resource.getpagesize()
Christian Heimes
2013-07-30
1
-0/+5
*
Add more tests for hashlib and hash object attributes
Christian Heimes
2013-07-30
1
-13/+62
*
Issue #18599: Fix name attribute of _sha1.sha1() object. It now returns
Christian Heimes
2013-07-30
2
-1/+4
*
Issue #18593: fix typo in comment
Eli Bendersky
2013-07-30
1
-1/+1
*
Make all idle test case names end with 'Test'.
Terry Jan Reedy
2013-07-30
2
-2/+2
*
#18584: make doctest examples in email documentation pass.
R David Murray
2013-07-29
3
-23/+67
*
Third attempt to fix #15415 on Windows
Nick Coghlan
2013-07-29
1
-5/+7
*
Attempt to fix #15415 on Windows
Nick Coghlan
2013-07-29
1
-5/+5
*
Update gui section of idle test README.
Terry Jan Reedy
2013-07-28
1
-4/+12
*
Issue #18441: Remove check from test_text.py in 3.3,4 (already done in 2.7).
Terry Jan Reedy
2013-07-28
1
-4/+1
*
Close #15415: Factor out temp dir helpers to test.support
Nick Coghlan
2013-07-28
7
-54/+223
*
Issue #15494: test.support is now a package rather than a module
Nick Coghlan
2013-07-28
4
-3/+10
*
Issue #18441: Make test.support.requires('gui') skip when it should.
Terry Jan Reedy
2013-07-28
1
-5/+17
*
doc of PYTHONFAULTHANDLER env var: add missing "versionadded" tag
Victor Stinner
2013-07-28
1
-0/+2
*
add a test for issue #17669 (closes #18565)
Benjamin Peterson
2013-07-27
1
-1/+40
*
Issue #18573: Complete copy-paste from assertRaises entry to assertWarns entry.
Terry Jan Reedy
2013-07-27
1
-1/+1
*
Issue #15893: Remove dead code
Victor Stinner
2013-07-27
1
-5/+0
*
Issue #15893: frozenmain.c now handles PyMem_Malloc() failure
Victor Stinner
2013-07-26
2
-8/+19
*
Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().
Christian Heimes
2013-07-26
3
-6/+17
*
Parser/asdl_c.py: use Py_CLEAR()
Victor Stinner
2013-07-26
2
-270/+135
*
According to the PEP 7, C code must "use 4-space indents"
Victor Stinner
2013-07-26
3
-6124/+6079
*
Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL.
Christian Heimes
2013-07-26
2
-1/+3
*
Issue #18560: Fix potential NULL pointer dereference in sum()
Christian Heimes
2013-07-26
2
-0/+7
*
Issue #18559: Fix NULL pointer dereference error in _pickle module
Christian Heimes
2013-07-26
2
-4/+8
*
Handle yet another potential failure in testcapi
Christian Heimes
2013-07-26
1
-0/+2
*
Check return value of PyLong_FromLong(X509_get_version()). It might be NULL if
Christian Heimes
2013-07-26
1
-0/+2
*
remove surplus and wrong Py_DECREF() introduced in 33891989c9cf
Christian Heimes
2013-07-26
1
-1/+0
*
Fix declaration-after-statement of d49f65ff4f3c
Christian Heimes
2013-07-26
1
-3/+7
*
Fix memory leaks and add checks for failing malloc() calls to testcapi module
Christian Heimes
2013-07-26
1
-0/+9
*
Fix possible NULL pointer dereferences in testcapi module
Christian Heimes
2013-07-26
1
-1/+7
*
Fix possible NULL pointer dereference in PyCurses_Start_Color()
Christian Heimes
2013-07-26
1
-0/+4
*
Issue #18556: Check the return value for PyUnicode_AsWideChar() in
Brett Cannon
2013-07-25
2
-1/+8
*
#15130: remove repeat of abstract paragraph from socket howto body.
R David Murray
2013-07-25
1
-6/+0
*
#18503: small cleanups in test_email.
R David Murray
2013-07-25
1
-2/+2
*
Issue #18549: Eliminate dead code in socket_ntohl().
Christian Heimes
2013-07-25
2
-2/+2
*
#14853: remove test that was making too many assumptions about stdin. Patch ...
Ezio Melotti
2013-07-25
1
-10/+0
*
#16937: document that stdin is always buffered, even when -u is used. Patch ...
Ezio Melotti
2013-07-25
4
-4/+7
*
Fix potential NULL pointer dereferencing in ast module
Christian Heimes
2013-07-24
1
-1/+1
[next]