summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Set startinpos before calling the error handler.Walter Dörwald2007-08-301-0/+1
* Rewrap line.Walter Dörwald2007-08-301-1/+2
* Improve extended slicing support in builtin types and classes. Specifically:Thomas Wouters2007-08-286-15/+261
* Revert accidental checkins from last commit.Georg Brandl2007-08-211-32/+6
* Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers.Georg Brandl2007-08-211-6/+32
* Move another variable declaration up.Walter Dörwald2007-08-171-2/+2
* Move variable declaration up.Walter Dörwald2007-08-171-6/+6
* Backport r57105 and r57145 from the py3k branch: UTF-32 codecs.Walter Dörwald2007-08-171-0/+266
* Bug #1763149: use proper slice syntax in docstring.Georg Brandl2007-07-292-4/+4
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-2131-611/+557
* Patch #1673759: add a missing overflow check when formatting floatsGeorg Brandl2007-07-122-2/+4
* Add T_PYSSIZET in structmember.h: This can be used forWalter Dörwald2007-06-131-166/+102
* Fix a bug when there was a newline in the string expandtabs was called on.Neal Norwitz2007-06-112-4/+16
* Prevent expandtabs() on string and unicode objects from causing a segfault whenNeal Norwitz2007-06-092-6/+28
* Bug #1733488: Fix compilation of bufferobject.c on AIX.Martin v. Löwis2007-06-081-1/+1
* Add the new function object attribute names from py3k.Neal Norwitz2007-05-271-3/+10
* Whitespace cleanupNeal Norwitz2007-05-231-1/+1
* Add -3 option to the interpreter to warn about features that areNeal Norwitz2007-05-232-2/+13
* Stop using METH_OLDARGS implicitlyNeal Norwitz2007-05-221-1/+1
* Complete deprecation of BaseException.message. Some subclasses were directlyBrett Cannon2007-05-171-10/+0
* Port rev 55353 from Guido:Neal Norwitz2007-05-161-1/+1
* Fix a bug in test_c_api() that caused a negative refcount.Guido van Rossum2007-05-101-3/+3
* As per Armin Rigo's suggestion, remove special handing from intobject.c to de...Kristján Valur Jónsson2007-05-072-8/+15
* Deprecate BaseException.message as per PEP 352.Brett Cannon2007-05-051-8/+34
* Fix problems in x64 build that were discovered by the testsuite:Kristján Valur Jónsson2007-05-032-1/+5
* Remove dead code. This code couldn't be reached because earlier inNeal Norwitz2007-05-031-12/+1
* Fix for #1303614 and #1174712:Armin Rigo2007-05-021-4/+85
* Export function sanitize_the_mode from fileobject.c as _PyFile_SanitizeMode()...Kristján Valur Jónsson2007-04-261-8/+7
* Fix a usage of the dangerous pattern decref - modify field - incref.Armin Rigo2007-04-191-2/+3
* Revert r53997 as perArmin Rigo2007-04-191-94/+32
* Silence a compiler warning about incompatible pointer types.Brett Cannon2007-04-191-1/+1
* When __slots__ are set to a unicode string, make it work the same asNeal Norwitz2007-04-141-1/+1
* Fix a bug when using the __lltrace__ opcode tracer, and a problem sith signed...Kristján Valur Jónsson2007-04-131-2/+2
* SF 1193128: Let str.translate(None) be an identity transformationRaymond Hettinger2007-04-121-8/+16
* SF 1191699: Make slices picklableRaymond Hettinger2007-04-111-0/+10
* Add some missing NULL checks which trigger crashes on low-memory conditions.Georg Brandl2007-04-112-0/+10
* Add a type.__init__() method that enforces the same signature asGuido van Rossum2007-03-231-1/+34
* - Bug #1683368: The object.__init__() and object.__new__() methods areGuido van Rossum2007-03-231-12/+88
* Add test and fix for fromkeys() optional argument.Raymond Hettinger2007-03-211-2/+2
* Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() call...Raymond Hettinger2007-03-202-2/+36
* Patch #1675423: PyComplex_AsCComplex() now tries to convert an objectGeorg Brandl2007-03-171-1/+48
* Remove warning: funcion declaration isn't a prototypeJeremy Hylton2007-03-161-2/+1
* Patch #1623563: allow __class__ assignment for classes with __slots__.Žiga Seilnacht2007-03-161-4/+27
* Patch #1462488: prevent a segfault in object_reduce_ex() by splittingŽiga Seilnacht2007-03-151-14/+47
* Patch #1680015: Don't modify __slots__ tuple if it contains an unicodeŽiga Seilnacht2007-03-141-16/+20
* Patch #1642844: comments to clarify the complexobject constructor.Georg Brandl2007-03-131-4/+25
* Typo and grammar fixes.Georg Brandl2007-03-131-3/+3
* Backport from Py3k branch:Georg Brandl2007-03-121-96/+169
* Patch #1675981: remove unreachable code from type.__new__() method.Žiga Seilnacht2007-03-111-7/+5
* Patch #1491866: change the complex() constructor to allow parthensized forms....Collin Winter2007-03-091-5/+25