| Commit message (Expand) | Author | Age | Files | Lines |
* | Set startinpos before calling the error handler. | Walter Dörwald | 2007-08-30 | 1 | -0/+1 |
|
|
* | Rewrap line. | Walter Dörwald | 2007-08-30 | 1 | -1/+2 |
|
|
* | Improve extended slicing support in builtin types and classes. Specifically: | Thomas Wouters | 2007-08-28 | 6 | -15/+261 |
|
|
* | Revert accidental checkins from last commit. | Georg Brandl | 2007-08-21 | 1 | -32/+6 |
|
|
* | Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers. | Georg Brandl | 2007-08-21 | 1 | -6/+32 |
|
|
* | Move another variable declaration up. | Walter Dörwald | 2007-08-17 | 1 | -2/+2 |
|
|
* | Move variable declaration up. | Walter Dörwald | 2007-08-17 | 1 | -6/+6 |
|
|
* | Backport r57105 and r57145 from the py3k branch: UTF-32 codecs. | Walter Dörwald | 2007-08-17 | 1 | -0/+266 |
|
|
* | Bug #1763149: use proper slice syntax in docstring. | Georg Brandl | 2007-07-29 | 2 | -4/+4 |
|
|
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 31 | -611/+557 |
|
|
* | Patch #1673759: add a missing overflow check when formatting floats | Georg Brandl | 2007-07-12 | 2 | -2/+4 |
|
|
* | Add T_PYSSIZET in structmember.h: This can be used for | Walter Dörwald | 2007-06-13 | 1 | -166/+102 |
|
|
* | Fix a bug when there was a newline in the string expandtabs was called on. | Neal Norwitz | 2007-06-11 | 2 | -4/+16 |
|
|
* | Prevent expandtabs() on string and unicode objects from causing a segfault when | Neal Norwitz | 2007-06-09 | 2 | -6/+28 |
|
|
* | Bug #1733488: Fix compilation of bufferobject.c on AIX. | Martin v. Löwis | 2007-06-08 | 1 | -1/+1 |
|
|
* | Add the new function object attribute names from py3k. | Neal Norwitz | 2007-05-27 | 1 | -3/+10 |
|
|
* | Whitespace cleanup | Neal Norwitz | 2007-05-23 | 1 | -1/+1 |
|
|
* | Add -3 option to the interpreter to warn about features that are | Neal Norwitz | 2007-05-23 | 2 | -2/+13 |
|
|
* | Stop using METH_OLDARGS implicitly | Neal Norwitz | 2007-05-22 | 1 | -1/+1 |
|
|
* | Complete deprecation of BaseException.message. Some subclasses were directly | Brett Cannon | 2007-05-17 | 1 | -10/+0 |
|
|
* | Port rev 55353 from Guido: | Neal Norwitz | 2007-05-16 | 1 | -1/+1 |
|
|
* | Fix a bug in test_c_api() that caused a negative refcount. | Guido van Rossum | 2007-05-10 | 1 | -3/+3 |
|
|
* | As per Armin Rigo's suggestion, remove special handing from intobject.c to de... | Kristján Valur Jónsson | 2007-05-07 | 2 | -8/+15 |
|
|
* | Deprecate BaseException.message as per PEP 352. | Brett Cannon | 2007-05-05 | 1 | -8/+34 |
|
|
* | Fix problems in x64 build that were discovered by the testsuite: | Kristján Valur Jónsson | 2007-05-03 | 2 | -1/+5 |
|
|
* | Remove dead code. This code couldn't be reached because earlier in | Neal Norwitz | 2007-05-03 | 1 | -12/+1 |
|
|
* | Fix for #1303614 and #1174712: | Armin Rigo | 2007-05-02 | 1 | -4/+85 |
|
|
* | Export function sanitize_the_mode from fileobject.c as _PyFile_SanitizeMode()... | Kristján Valur Jónsson | 2007-04-26 | 1 | -8/+7 |
|
|
* | Fix a usage of the dangerous pattern decref - modify field - incref. | Armin Rigo | 2007-04-19 | 1 | -2/+3 |
|
|
* | Revert r53997 as per | Armin Rigo | 2007-04-19 | 1 | -94/+32 |
|
|
* | Silence a compiler warning about incompatible pointer types. | Brett Cannon | 2007-04-19 | 1 | -1/+1 |
|
|
* | When __slots__ are set to a unicode string, make it work the same as | Neal Norwitz | 2007-04-14 | 1 | -1/+1 |
|
|
* | Fix a bug when using the __lltrace__ opcode tracer, and a problem sith signed... | Kristján Valur Jónsson | 2007-04-13 | 1 | -2/+2 |
|
|
* | SF 1193128: Let str.translate(None) be an identity transformation | Raymond Hettinger | 2007-04-12 | 1 | -8/+16 |
|
|
* | SF 1191699: Make slices picklable | Raymond Hettinger | 2007-04-11 | 1 | -0/+10 |
|
|
* | Add some missing NULL checks which trigger crashes on low-memory conditions. | Georg Brandl | 2007-04-11 | 2 | -0/+10 |
|
|
* | Add a type.__init__() method that enforces the same signature as | Guido van Rossum | 2007-03-23 | 1 | -1/+34 |
|
|
* | - Bug #1683368: The object.__init__() and object.__new__() methods are | Guido van Rossum | 2007-03-23 | 1 | -12/+88 |
|
|
* | Add test and fix for fromkeys() optional argument. | Raymond Hettinger | 2007-03-21 | 1 | -2/+2 |
|
|
* | Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() call... | Raymond Hettinger | 2007-03-20 | 2 | -2/+36 |
|
|
* | Patch #1675423: PyComplex_AsCComplex() now tries to convert an object | Georg Brandl | 2007-03-17 | 1 | -1/+48 |
|
|
* | Remove warning: funcion declaration isn't a prototype | Jeremy Hylton | 2007-03-16 | 1 | -2/+1 |
|
|
* | Patch #1623563: allow __class__ assignment for classes with __slots__. | Žiga Seilnacht | 2007-03-16 | 1 | -4/+27 |
|
|
* | Patch #1462488: prevent a segfault in object_reduce_ex() by splitting | Žiga Seilnacht | 2007-03-15 | 1 | -14/+47 |
|
|
* | Patch #1680015: Don't modify __slots__ tuple if it contains an unicode | Žiga Seilnacht | 2007-03-14 | 1 | -16/+20 |
|
|
* | Patch #1642844: comments to clarify the complexobject constructor. | Georg Brandl | 2007-03-13 | 1 | -4/+25 |
|
|
* | Typo and grammar fixes. | Georg Brandl | 2007-03-13 | 1 | -3/+3 |
|
|
* | Backport from Py3k branch: | Georg Brandl | 2007-03-12 | 1 | -96/+169 |
|
|
* | Patch #1675981: remove unreachable code from type.__new__() method. | Žiga Seilnacht | 2007-03-11 | 1 | -7/+5 |
|
|
* | Patch #1491866: change the complex() constructor to allow parthensized forms.... | Collin Winter | 2007-03-09 | 1 | -5/+25 |
|
|