| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | -1 is reserved for errors | Benjamin Peterson | 2010-10-17 | 1 | -0/+3 |
|
|
* | fix prototype | Benjamin Peterson | 2010-10-17 | 1 | -1/+1 |
|
|
* | make hashes always the size of pointers; introduce Py_hash_t #9778 | Benjamin Peterson | 2010-10-17 | 15 | -86/+84 |
|
|
* | use helper hash unimplemented function | Benjamin Peterson | 2010-10-17 | 1 | -8/+1 |
|
|
* | Add an optional size argument to _Py_char2wchar() | Victor Stinner | 2010-10-16 | 1 | -2/+3 |
|
|
* | Remove unused label. | Georg Brandl | 2010-10-15 | 1 | -4/+0 |
|
|
* | Use locale encoding if Py_FileSystemDefaultEncoding is not set | Victor Stinner | 2010-10-15 | 3 | -25/+32 |
|
|
* | #9418: first step of moving private string methods to _string module. | Georg Brandl | 2010-10-14 | 2 | -4/+32 |
|
|
* | prefer clearing global objects to obscure module.__dict__ bugs #10068 | Benjamin Peterson | 2010-10-12 | 1 | -4/+1 |
|
|
* | Upgrade to Unicode 6.0.0. | Martin v. Löwis | 2010-10-11 | 1 | -702/+804 |
|
|
* | PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* | Victor Stinner | 2010-10-07 | 1 | -3/+3 |
|
|
* | typo | Benjamin Peterson | 2010-10-03 | 1 | -2/+2 |
|
|
* | Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replace | Victor Stinner | 2010-10-02 | 1 | -22/+105 |
|
|
* | Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul char... | Victor Stinner | 2010-10-02 | 1 | -1/+1 |
|
|
* | type.__abstractmethods__ should raise an AttributeError #10006 | Benjamin Peterson | 2010-10-02 | 1 | -2/+5 |
|
|
* | Fix PyUnicode_AsWideCharString(): set *size if size is not NULL | Victor Stinner | 2010-09-29 | 1 | -0/+2 |
|
|