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
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
*
fix merge_collapse to actually maintain the invariant it purports to (closes ...
Benjamin Peterson
2015-02-25
1
-1/+2
*
Issue #23370: Fix off-by-one error for non-contiguous buffers.
Stefan Krah
2015-02-01
1
-2/+2
*
Issue #23055: Fixed read-past-the-end error in PyUnicode_FromFormatV.
Serhiy Storchaka
2015-01-30
1
-0/+2
*
Issue #23055: Fixed off-by-one error in PyUnicode_FromFormatV.
Serhiy Storchaka
2015-01-30
1
-1/+2
*
Issue #23349: Fix off-by-one error in PyBuffer_ToContiguous(). Initial patch
Stefan Krah
2015-01-30
1
-2/+2
*
Issue #22079: PyType_Ready() now checks that statically allocated type has
Serhiy Storchaka
2015-01-28
1
-0/+14
*
Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis
Serhiy Storchaka
2015-01-27
1
-12/+13
*
Issue #23181: More "codepoint" -> "code point".
Serhiy Storchaka
2015-01-18
1
-4/+4
*
remove tautological condition (closes #22954)
Benjamin Peterson
2014-11-27
1
-1/+1
*
remove strange casts
Benjamin Peterson
2014-11-23
1
-4/+4
*
Closes #22772: fix __ifloordiv__ and __itruediv__ docstring.
Georg Brandl
2014-10-31
1
-2/+2
*
Issue #22604: Fix assertion error in debug mode when dividing a complex numbe...
Antoine Pitrou
2014-10-10
1
-2/+6
*
use Py_ssize_t for file offset and length computations in iteration (closes #...
Benjamin Peterson
2014-10-01
1
-8/+7
*
fix overflow checking in PyString_Repr (closes #22519)
Benjamin Peterson
2014-09-29
1
-2/+3
*
cleanup overflowing handling in unicode_decode_call_errorhandler and unicode_...
Benjamin Peterson
2014-09-29
1
-21/+48
*
give exception a nice message (closes #22379)
Benjamin Peterson
2014-09-28
1
-1/+1
*
Fix typo in comment.
Raymond Hettinger
2014-08-02
1
-1/+1
*
Issue #22023: Fix %S, %R and %V formats of PyUnicode_FromFormat().
Victor Stinner
2014-07-29
1
-9/+9
*
don't overwrite the error from PyObject_GetAttrString (closes #4346)
Benjamin Peterson
2014-06-27
1
-8/+4
*
avoid overflow with large buffer sizes and/or offsets (closes #21831)
Benjamin Peterson
2014-06-24
1
-2/+2
*
Merge.
Charles-François Natali
2014-06-19
10
-92/+96
|
\
|
*
Issue 8743: Improve interoperability between sets and the collections.Set ab...
Raymond Hettinger
2014-05-26
1
-6/+2
|
*
Issue #21350: Fix file.writelines() to accept arbitrary buffer objects, as ad...
Antoine Pitrou
2014-05-08
1
-7/+7
|
*
Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_Resize
Kristján Valur Jónsson
2014-04-25
2
-6/+4
|
*
Issue #12546: Allow \x00 as a fill character for builtin type __format__ meth...
Eric V. Smith
2014-04-14
1
-10/+8
|
*
bail in unicode error's __str__ methods if the objects are not properly initi...
Benjamin Peterson
2014-04-02
1
-0/+12
|
*
fix expandtabs overflow detection to be consistent and not rely on signed ove...
Benjamin Peterson
2014-03-30
1
-19/+19
|
*
add braces and fix indentation
Benjamin Peterson
2014-03-30
1
-17/+18
|
*
fix indentation and add braces
Benjamin Peterson
2014-03-30
1
-16/+17
|
*
give non-iterable TypeError a message (closes #20507)
Benjamin Peterson
2014-02-15
1
-1/+1
|
*
Issue #19255: Clear error after failed PyDict_SetItem() on shutdown.
Serhiy Storchaka
2014-02-12
1
-2/+4
|
*
Issue #20437: Fixed 43 potential bugs when deleting objects references.
Serhiy Storchaka
2014-02-09
2
-8/+4
*
|
Issue #21810: Backport mmap-based arena allocation failure check.
Charles-François Natali
2014-06-19
1
-4/+9
|
/
*
mmap obmalloc arenas so that they may be immediately returned to the system w...
Benjamin Peterson
2014-02-04
1
-13/+37
*
Circumventing a bug in glibc (issue #17976).
Serhiy Storchaka
2013-12-17
1
-3/+5
*
Issue #17976: Fixed potential problem with file.write() not detecting IO error
Serhiy Storchaka
2013-12-17
1
-1/+5
*
Issue #14432: Generator now clears the borrowed reference to the thread state
Victor Stinner
2013-12-13
1
-0/+3
*
Issue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle.
Alexandre Vassalotti
2013-12-01
1
-2/+2
*
Issue #6477: Added pickling support for singletons and their types.
Alexandre Vassalotti
2013-12-01
1
-2/+2
*
fix docstring. extra \.
Gregory P. Smith
2013-11-25
1
-1/+1
*
Document that @property can incorporate a docstring from the getter method. ...
Raymond Hettinger
2013-11-24
1
-5/+9
*
Issue #19279: UTF-7 decoder no more produces illegal unicode strings.
Serhiy Storchaka
2013-10-19
1
-0/+2
*
Issue #19171: speed some cases of 3-argument long pow().
Tim Peters
2013-10-05
1
-4/+10
*
#19069: use imperative mood in float object docstrings. Patch by Marco Buttu.
Ezio Melotti
2013-10-05
1
-9/+9
*
#19068: use imperative mood in complex object docstrings. Patch by Marco Buttu.
Ezio Melotti
2013-10-05
1
-2/+2
*
Various clarifications based on feedback & questions over the years.
Tim Peters
2013-08-24
1
-19/+96
*
Add line explaining the "%sort" test.
Tim Peters
2013-08-22
1
-0/+1
*
Issue 18719: Remove a false optimization
Raymond Hettinger
2013-08-14
1
-1/+0
*
Issue #15866: The xmlcharrefreplace error handler no more produces two XML
Serhiy Storchaka
2013-08-06
1
-21/+61
*
Silence compiler warning for unused declaration.
Raymond Hettinger
2013-08-05
1
-1/+0
[next]