| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Remove some unecessary '#ifdef Py_NAN's from floatobject.c | Mark Dickinson | 2010-12-04 | 1 | -6/+0 |
|
|
* | Fix indentation in Objects/longobject.c | Mark Dickinson | 2010-12-04 | 1 | -3/+3 |
|
|
* | Regenerate. | Martin v. Löwis | 2010-12-04 | 1 | -0/+1 |
|
|
* | Add Revision keyword. | Martin v. Löwis | 2010-12-04 | 1 | -0/+1 |
|
|
* | Make script 2-vs-3-agnostic. | Martin v. Löwis | 2010-12-04 | 1 | -1/+1 |
|
|
* | Issue #10557: Fixed error messages from float() and other numeric | Alexander Belopolsky | 2010-12-04 | 4 | -48/+106 |
|
|
* | Merge branches/pep-0384. | Martin v. Löwis | 2010-12-03 | 15 | -20/+186 |
|
|
* | #6780: fix complex() constructor TypeError message | Victor Stinner | 2010-12-03 | 1 | -1/+1 |
|
|
* | Issue 2690: Add support for slicing and negative indices to range objects (in... | Nick Coghlan | 2010-12-03 | 1 | -100/+184 |
|
|
* | Remove redundant check for PyBytes in unicode_encode. | Georg Brandl | 2010-12-03 | 1 | -17/+1 |
|
|
* | code style | Benjamin Peterson | 2010-12-03 | 1 | -5/+10 |
|
|
* | Issue9915: speeding up sorting with a key | Daniel Stutzbach | 2010-12-02 | 1 | -225/+238 |
|
|
* | #7475: add (un)transform method to bytes/bytearray and str, add back codecs t... | Georg Brandl | 2010-12-02 | 3 | -1/+182 |
|
|
* | Issue #8685: Speed up set difference `a - b` when source set `a` is | Antoine Pitrou | 2010-11-30 | 1 | -7/+22 |
|
|
* | Remove redundant includes of headers that are already included by Python.h. | Georg Brandl | 2010-11-30 | 5 | -6/+0 |
|
|
* | Include structseq.h in Python.h, and remove now-redundant includes in individ... | Georg Brandl | 2010-11-30 | 3 | -3/+0 |
|
|
* | Indentation cleanup. | Stefan Krah | 2010-11-26 | 1 | -9/+9 |
|
|
* | Issue #7094: Add alternate ('#') flag to __format__ methods for float, comple... | Eric Smith | 2010-11-25 | 1 | -16/+6 |
|
|
* | pep 7 actually wants the brace on a new line | Benjamin Peterson | 2010-11-20 | 1 | -22/+44 |
|
|
* | code style and simplification | Benjamin Peterson | 2010-11-20 | 1 | -72/+31 |
|
|
* | Add error handling in range_count. | Georg Brandl | 2010-11-20 | 1 | -1/+4 |
|
|
* | count() should return integers #10474 | Benjamin Peterson | 2010-11-20 | 1 | -2/+2 |
|
|
* | code style | Benjamin Peterson | 2010-11-20 | 1 | -8/+4 |
|
|
* | #1574217: only swallow AttributeErrors in isinstance, not everything. | R. David Murray | 2010-11-20 | 1 | -3/+12 |
|
|
* | handle dict subclasses gracefully in PyArg_ValidateKeywordArguments | Benjamin Peterson | 2010-11-17 | 1 | -1/+1 |
|
|
* | Issue #10359: Remove ";" after function definition, invalid in ISO C | Victor Stinner | 2010-11-09 | 1 | -1/+1 |
|
|
* | PyUnicode_DecodeFSDefaultAndSize() raises MemoryError if _Py_char2wchar() fails | Victor Stinner | 2010-11-08 | 1 | -1/+1 |
|
|
* | PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails | Victor Stinner | 2010-11-08 | 1 | -3/+20 |
|
|
* | str, bytes, bytearray docstring: remove unnecessary [...] | Victor Stinner | 2010-11-07 | 3 | -3/+3 |
|
|
* | Fix encode/decode method doc of str, bytes, bytearray types | Victor Stinner | 2010-11-07 | 3 | -9/+9 |
|
|
* | Added more to docstrings for str.format, format_map, and __format__. | Eric Smith | 2010-11-06 | 1 | -3/+5 |
|
|
* | Issue #10288: The deprecated family of "char"-handling macros | David Malcolm | 2010-11-05 | 2 | -24/+24 |
|
|
* | Followup to r86170: fix reference leak in str.format | Antoine Pitrou | 2010-11-05 | 1 | -1/+0 |
|
|
* | Issue #10293: Remove obsolete field in the PyMemoryView structure, | Antoine Pitrou | 2010-11-04 | 1 | -44/+1 |
|
|
* | Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.fo... | Eric Smith | 2010-11-04 | 2 | -1/+16 |
|
|
* | deuglify | Benjamin Peterson | 2010-11-03 | 1 | -2/+3 |
|
|
* | Issue 10221: Improve error message for dict.pop(). | Raymond Hettinger | 2010-10-30 | 1 | -2/+1 |
|
|
* | Issue #5437: A preallocated MemoryError instance should not hold traceback | Antoine Pitrou | 2010-10-28 | 1 | -10/+87 |
|
|
* | Simplify PyUnicode_Encode/DecodeFSDefault on Windows/Mac OS X | Victor Stinner | 2010-10-27 | 1 | -16/+18 |
|
|
* | Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ... | Georg Brandl | 2010-10-24 | 1 | -0/+10 |
|
|
* | Follow up to #9778: fix regressions on 64-bit Windows builds | Antoine Pitrou | 2010-10-23 | 2 | -16/+7 |
|
|
* | follow up to #9778: define and use an unsigned hash type | Benjamin Peterson | 2010-10-23 | 5 | -18/+18 |
|
|
* | Revert r85797 (and r85798): it broke the Windows buildbots because of | Antoine Pitrou | 2010-10-22 | 1 | -48/+30 |
|
|
* | Issue #9935: Speed up pickling of instances of user-defined classes. | Antoine Pitrou | 2010-10-22 | 1 | -30/+48 |
|
|
* | Issue #4388: On Mac OS X, decode command line arguments from UTF-8, instead of | Victor Stinner | 2010-10-20 | 1 | -0/+114 |
|
|
* | PyUnicode_FromFormatV(): Fix %A format | Victor Stinner | 2010-10-18 | 1 | -0/+1 |
|
|
* | Remove unneeded casts to hashfunc. | Georg Brandl | 2010-10-18 | 3 | -5/+5 |
|
|