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
...
*
replace 512 bit dh key with a 2014 bit one (closes #23844)
Benjamin Peterson
2015-04-02
3
-10/+8
*
remove assignment in conditional
Benjamin Peterson
2015-04-01
1
-1/+2
*
Issue #23838: linecache now clears the cache and returns an empty result on
Serhiy Storchaka
2015-04-01
3
-1/+24
*
Issue #23799: Added test.test_support.start_threads() for running and
Serhiy Storchaka
2015-04-01
8
-87/+85
*
Issue #23729: Improve docs for ElementTree namespace parsing
Raymond Hettinger
2015-03-31
1
-8/+11
*
Issue #23115: os.urandom() now releases the GIL when the getentropy() is used
Victor Stinner
2015-03-30
1
-6/+14
*
Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances.
Serhiy Storchaka
2015-03-30
1
-5/+2
*
Issue #23783: Fixed memory leak in PyObject_ClearWeakRefs() in case of
Serhiy Storchaka
2015-03-30
1
-7/+4
*
Issue #23781: Add private helper function _PyErr_ReplaceException() that
Serhiy Storchaka
2015-03-30
5
-26/+27
*
Issue #14904: Made test_unicode_repr_oflw to use less memory.
Serhiy Storchaka
2015-03-30
1
-34/+43
*
Issue #22390: Fix test_gzip if unicode filename doesn't work
Victor Stinner
2015-03-30
1
-1/+1
*
Issue #22390: Fix test_gzip, remove temporary file
Victor Stinner
2015-03-29
1
-0/+1
*
Issue #22390: Fix test_pdb to remove created bar.pyc file
Victor Stinner
2015-03-29
1
-0/+1
*
Issue #22390: Fix test_aifc to remove the created file
Victor Stinner
2015-03-29
1
-2/+6
*
Issue #22390: Fix typo in regrtest, support => test_support
Victor Stinner
2015-03-29
1
-3/+3
*
Issue #22390: test.regrtest now emits a warning if temporary files or
Serhiy Storchaka
2015-03-29
2
-1/+15
*
Make some tests more frienly to MemoryError.
Serhiy Storchaka
2015-03-28
6
-16/+41
*
Issue #23445: Fix test_gdb.python_is_optimized() for CFLAGS=-Og
Victor Stinner
2015-03-27
1
-1/+1
*
Check that failed writerow() doesn't produce change a file.
Serhiy Storchaka
2015-03-25
1
-13/+21
*
Issue #23742: ntpath.expandvars() no longer loses unbalanced single quotes.
Serhiy Storchaka
2015-03-25
3
-1/+4
*
Issue #21802: The reader in BufferedRWPair now is closed even when closing
Serhiy Storchaka
2015-03-24
4
-6/+69
*
Issue #23671: string.Template now allows to specify the "self" parameter as
Serhiy Storchaka
2015-03-24
4
-3/+46
*
Issue #23583: Fixed writing unicode to standard output stream in IDLE.
Serhiy Storchaka
2015-03-24
1
-2/+2
*
Issue #23583: Fixed writing unicode to standard output stream in IDLE.
Serhiy Storchaka
2015-03-24
3
-1/+272
*
#23512: list non-essential built-in functions after the table. Patch by Carl...
Ezio Melotti
2015-03-24
2
-4/+10
*
#11468: improve unittest basic example. Initial patch by Florian Preinstorfer.
Ezio Melotti
2015-03-24
2
-38/+30
*
Issue #21560: An attempt to write a data of wrong type no longer cause
Serhiy Storchaka
2015-03-23
3
-2/+32
*
Issue 23729: Document ElementTree namespace handling and fix an omission in ...
Raymond Hettinger
2015-03-22
1
-0/+68
*
#23647: Increase imaplib's MAXLINE to accommodate modern mailbox sizes.
R David Murray
2015-03-22
2
-5/+8
*
#23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None.
R David Murray
2015-03-22
5
-31/+92
*
clarify behavior of shutil.move when destination exists (closes #22933)
Benjamin Peterson
2015-03-22
1
-6/+3
*
Issue #22079: Py3k warning now is issued in PyType_Ready() instead of
Serhiy Storchaka
2015-03-22
1
-6/+9
*
Issue #23075: Whether __builtins__ is a module or a dict is undefined in
Serhiy Storchaka
2015-03-21
1
-1/+2
*
Issue #23686: Update OS X 10.5 installer build to use OpenSSL 1.0.2a.
Ned Deily
2015-03-19
3
-12/+12
*
Fixed Misc/NEWS entry for issue #23136.
Serhiy Storchaka
2015-03-19
1
-1/+1
*
Issue #23136: _strptime now uniformly handles all days in week 0, including
Serhiy Storchaka
2015-03-19
3
-5/+26
*
wrap properly
Benjamin Peterson
2015-03-19
1
-2/+2
*
Issue #23458: Skip test_urandom_fd_non_inheritable on OS X 10.4 since
Ned Deily
2015-03-17
2
-1/+31
*
Fix up PCbuild/readme.txt a bit.
Zachary Ware
2015-01-15
1
-7/+4
*
Issue #22585, #23115: make URandomFDTests test case actually run
Ned Deily
2015-03-17
1
-0/+1
*
versionchanged for rc4 removal (closes #23679)
Benjamin Peterson
2015-03-16
1
-8/+11
*
Use non-zero and non-last positions in error handler tests.
Serhiy Storchaka
2015-03-16
1
-16/+24
*
Increased coverage of standard codec error handlers.
Serhiy Storchaka
2015-03-15
1
-30/+42
*
Issue #23549: Clarify confusion in heapq doc - accessing the mininmal element
Eli Bendersky
2015-03-15
1
-2/+4
*
Fix minor docs markup errors.
Serhiy Storchaka
2015-03-14
3
-5/+5
*
the default is sys.maxsize not sys.maxint (closes #23645)
Benjamin Peterson
2015-03-13
1
-9/+9
*
Issue #23138: Fixed parsing cookies with absent keys or values in cookiejar.
Serhiy Storchaka
2015-03-13
3
-15/+57
*
Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now
Serhiy Storchaka
2015-03-13
4
-14/+75
*
Issue #22928: Disabled HTTP header injections in httplib.
Serhiy Storchaka
2015-03-12
3
-1/+98
*
Issue #23615: Module tarfile is now can be reloaded with imp.reload().
Serhiy Storchaka
2015-03-11
3
-2/+4
[prev]
[next]