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
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #18997: fix ElementTree crash with using pickle and __getstate__.
Eli Bendersky
2013-09-13
1
-26/+24
*
Issue 18752: Make chain.from_iterable() more visible in the documentation.
Raymond Hettinger
2013-09-09
1
-1/+2
*
Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in
Serhiy Storchaka
2013-09-05
1
-14/+23
*
Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in GEN_EMA...
Christian Heimes
2013-09-05
1
-1/+1
*
Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't cast
Victor Stinner
2013-09-04
1
-1/+1
*
Issue #18876: The FileIO.mode attribute now better reflects the actual mode u...
Antoine Pitrou
2013-09-04
1
-10/+13
*
cwr_next(): move invariants out of loops.
Tim Peters
2013-09-03
1
-16/+12
*
Issue #18912: Fix indentation in docstring
Eli Bendersky
2013-09-03
1
-4/+4
*
Fix compilation of the _sqlite module if threads are disabled
Victor Stinner
2013-08-27
1
-0/+3
*
Issue #18783: Removed existing mentions of Python long type in docstrings,
Serhiy Storchaka
2013-08-27
8
-29/+28
*
#18803: fix more typos. Patch by Févry Thibault.
Ezio Melotti
2013-08-25
1
-1/+1
*
Merge.
Charles-François Natali
2013-08-25
1
-11/+12
|
\
|
*
Issue #18763: subprocess: The file descriptors are now closed after calling the
Charles-François Natali
2013-08-25
1
-11/+12
*
|
Issue #11973: Fix a problem in kevent. The flags and fflags fields are now
Christian Heimes
2013-08-25
1
-1/+1
*
|
Issue #18747: Fix spelling errors in my commit message and comments,
Christian Heimes
2013-08-25
1
-2/+2
|
/
*
Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_Obj
Serhiy Storchaka
2013-08-22
1
-12/+53
*
Issue #18747: Use a parent atfork handler instead of a child atfork handler.
Christian Heimes
2013-08-22
1
-12/+9
*
Issue #17119: Fixed integer overflows when processing large strings and tuples
Serhiy Storchaka
2013-08-21
1
-9/+30
*
Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork.
Christian Heimes
2013-08-21
1
-0/+72
*
Issue #8865: Concurrent invocation of select.poll.poll() now raises a
Serhiy Storchaka
2013-08-20
1
-0/+13
*
Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms.
Serhiy Storchaka
2013-08-20
1
-1/+1
*
Issue #18777: The ssl module now uses the new CRYPTO_THREADID API of
Christian Heimes
2013-08-19
1
-1/+17
*
Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok.
Christian Heimes
2013-08-17
1
-1/+1
*
Issue #18768: coding style nitpick. Thanks to Vajrasky Kok
Christian Heimes
2013-08-17
1
-1/+1
*
#18466: fix more typos. Patch by Févry Thibault.
Ezio Melotti
2013-08-17
3
-3/+3
*
Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke ma...
Christian Heimes
2013-08-17
1
-1/+0
*
Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytes
Christian Heimes
2013-08-16
1
-5/+59
*
Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.
Larry Hastings
2013-08-12
1
-0/+4
*
Issue #18661: typo in grp.struct_group docstring. Thanks Vajrasky Kok.
Mark Dickinson
2013-08-05
1
-1/+1
*
Silence compiler warnings for strict function prototype declarations.
Raymond Hettinger
2013-08-04
1
-2/+2
*
Issue #17998: Fix an internal error in regular expression engine.
Serhiy Storchaka
2013-08-03
2
-7/+7
*
Issue #18627: Fix typo noticed by Vajrasky Kok.
Ned Deily
2013-08-02
1
-1/+1
*
Issue #17557: Fix os.getgroups() to work with the modified behavior of
Ned Deily
2013-08-02
1
-0/+30
*
Issue #17899: Fix rare file descriptor leak in os.listdir().
Larry Hastings
2013-08-02
1
-0/+11
*
Initialize utime with 0. It fixes a couple of compiler warnung:
Christian Heimes
2013-07-31
1
-0/+1
*
Issue #18599: Fix name attribute of _sha1.sha1() object. It now returns
Christian Heimes
2013-07-30
1
-1/+1
*
Issue #15893: frozenmain.c now handles PyMem_Malloc() failure
Victor Stinner
2013-07-26
1
-6/+10
*
Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL.
Christian Heimes
2013-07-26
1
-1/+1
*
Issue #18559: Fix NULL pointer dereference error in _pickle module
Christian Heimes
2013-07-26
1
-4/+6
*
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
1
-1/+5
*
Issue #18549: Eliminate dead code in socket_ntohl().
Christian Heimes
2013-07-25
1
-2/+0
*
#16937: document that stdin is always buffered, even when -u is used. Patch ...
Ezio Melotti
2013-07-25
1
-1/+2
*
Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],
Christian Heimes
2013-07-22
1
-4/+12
[next]