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
*
Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays
Eli Bendersky
2011-03-04
1
-2/+2
*
Issue #10516: added copy() and clear() methods to bytearrays as well
Eli Bendersky
2011-03-03
1
-0/+26
*
#11335: Fix memory leak when a sort key function throws an exception
Daniel Stutzbach
2011-03-02
1
-0/+2
*
Fix my previous commit (r88709) for str.encode(errors=...)
Victor Stinner
2011-03-02
1
-5/+10
*
Issue #8923: cache str.encode() result
Victor Stinner
2011-03-02
1
-9/+16
*
Remove useless argument of _PyUnicode_AsDefaultEncodedString()
Victor Stinner
2011-03-02
2
-6/+3
*
Issue #10831: PyUnicode_FromFormat() supports %li, %lli and %zi formats
Victor Stinner
2011-03-02
1
-9/+5
*
Fix my previous commit (r88702): initialize size_tflag in parse_format_flags()
Victor Stinner
2011-03-02
1
-0/+1
*
Issue #10829: Refactor PyUnicode_FromFormat()
Victor Stinner
2011-03-01
1
-69/+82
*
Issue #11246: Fix PyUnicode_FromFormat("%V")
Victor Stinner
2011-03-01
1
-7/+19
*
PEP 7 conformance changes (whitespace only).
Alexander Belopolsky
2011-02-26
1
-284/+350
*
Issue #11303: Added shortcuts for utf8 and latin1 encodings.
Alexander Belopolsky
2011-02-25
1
-4/+10
*
Issue #10516: adding list.clear() and list.copy() methods
Eli Bendersky
2011-02-25
1
-1/+20
*
Issue #11286: Raise a ValueError from calling PyMemoryView_FromBuffer with
Antoine Pitrou
2011-02-24
1
-0/+5
*
Issue #3080: Add PyModule_GetNameObject()
Victor Stinner
2011-02-23
1
-14/+29
*
Issue #8914: fix various warnings from the Clang static analyzer v254.
Brett Cannon
2011-02-22
8
-21/+22
*
Fix PyUnicode_FromFormatV("%c") for non-BMP char
Victor Stinner
2011-02-21
1
-2/+23
*
Remove bootstrap code of PyUnicode_AsEncodedString()
Victor Stinner
2011-02-21
1
-15/+0
*
- Check for NULL result in PyType_FromSpec.
Martin v. Löwis
2011-02-21
1
-0/+2
*
#11249: in PyType_FromSpec, copy tp_doc slot since it usually will point to a...
Georg Brandl
2011-02-19
1
-0/+11
*
Issue #11134: Add missing fields to typeslots.h.
Martin v. Löwis
2011-02-11
1
-0/+3
*
Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check
Martin v. Löwis
2011-02-05
1
-0/+6
*
Issue #11302: missing type check on _string.formatter_field_name_split and _s...
Eric Smith
2011-01-29
1
-0/+10
*
Issue #10451: memoryview objects could allow to mutate a readable buffer.
Antoine Pitrou
2011-01-18
1
-3/+0
*
remove unneeded assertion
Benjamin Peterson
2011-01-17
1
-1/+0
*
correct assertion
Benjamin Peterson
2011-01-17
1
-1/+1
*
turn some checks into assertions, since they are implied by the caller
Benjamin Peterson
2011-01-17
1
-4/+2
*
rangeobject.c (compute_slice_indices): Make function static.
Matthias Klose
2011-01-16
1
-1/+1
*
plug reference leak
Benjamin Peterson
2011-01-13
1
-2/+4
*
use PyErr_SetString instead of PyErr_Format
Benjamin Peterson
2011-01-12
1
-2/+2
*
don't segfault on deleting __abstractmethods__ #10892
Benjamin Peterson
2011-01-12
1
-2/+11
*
Issue 10889: Support slicing and indexing of large ranges (no docs changes, s...
Nick Coghlan
2011-01-12
1
-67/+306
*
Issue #8020: Avoid a crash where the small objects allocator would read
Antoine Pitrou
2011-01-07
1
-6/+22
*
Drop bf_getbuffer/bf_releasebuffer from stable ABI,
Martin v. Löwis
2011-01-06
1
-3/+3
*
Support comment lines and missing indices in typeslots.h.
Martin v. Löwis
2011-01-06
1
-1/+6
*
Remove arbitrary string length limits
Victor Stinner
2011-01-05
1
-2/+2
*
Issue #9015, #9611: stdprinter.write() clamps the length to 2^31-1 on Windows
Victor Stinner
2011-01-04
1
-2/+8
*
Issue #9566: use Py_ssize_t instead of int
Victor Stinner
2011-01-04
3
-6/+7
*
Removed unneeded #include
Alexander Belopolsky
2010-12-22
1
-2/+0
*
#5587: add a repr to dict_proxy objects. Patch by David Stanek and Daniel Ur...
Ezio Melotti
2010-12-18
1
-1/+7
*
#4236: avoid possible Fatal Error when import is called from __del__
R. David Murray
2010-12-14
1
-2/+3
*
remove (un)transform methods
Benjamin Peterson
2010-12-12
3
-181/+1
*
Reverted accidental commit (from r87159)
Alexander Belopolsky
2010-12-10
1
-17/+3
*
Updated UCD version and unicode.org links to Unicode 6.0.0
Alexander Belopolsky
2010-12-10
1
-3/+17
*
use the more direct API
Benjamin Peterson
2010-12-07
1
-3/+3
*
return views from dict proxy items/values/keys #10630
Benjamin Peterson
2010-12-07
1
-3/+3
*
Fix typo.
Georg Brandl
2010-12-04
1
-1/+1
*
Removed static function complex_format, moved it into complex_repr. Modified ...
Eric Smith
2010-12-04
1
-10/+8
*
Use copysign to produce appropriately signed zeros instead of trying to worm ...
Mark Dickinson
2010-12-04
1
-12/+5
*
Issue #10596: Fix float.__mod__ to have the same behaviour as
Mark Dickinson
2010-12-04
1
-4/+14
[next]