aboutsummaryrefslogtreecommitdiff
path: root/Objects/sliceobject.c
AgeCommit message (Expand)Author
2010-05-09Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou
2009-04-20Merged revisions 71734,71738-71739 via svnmerge fromBenjamin Peterson
2009-02-02Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson
2008-07-02Merged revisions 64365,64370,64406,64408-64409,64412,64416-64417,64420-64421,...Benjamin Peterson
2007-12-19#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes
2007-12-02Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes
2007-10-23#1316: remove redundant PyLong_Check calls when PyInt_Check was already called.Georg Brandl
2007-08-31Remove checking redundantly for checks of PyInt and PyLong.Neal Norwitz
2007-08-28Fix buglet in sliceobjects, they were not returning Py_NotImplemented whenThomas Wouters
2007-07-21Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis
2007-05-19Add a format specifier %R to PyUnicode_FromFormat(), which embedsWalter Dörwald
2007-05-18Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald
2007-04-27Merged revisions 53952-54987 via svnmerge fromGuido van Rossum
2006-08-24Restructure comparison dramatically. There is no longer a defaultGuido van Rossum
2006-08-21Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters
2006-04-21Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters
2006-02-15Merge ssize_t branch.Martin v. Löwis
2005-08-26Disallow keyword arguments for type constructors that don't use them.Georg Brandl
2003-09-05SF bug #800796: Difference between hash() and __hash__()Raymond Hettinger
2002-12-29SF patch #659536: Use PyArg_UnpackTuple where possible.Raymond Hettinger
2002-11-06Handle really big steps in extended slices.Michael W. Hudson
2002-11-05Some days, I think my comment ofMichael W. Hudson
2002-09-12Fix for platforms where int != long.Michael W. Hudson
2002-07-19Silly typo. Not sure how that got in.Michael W. Hudson
2002-07-19A few days ago, Guido said (in the thread "[Python-Dev] PythonMichael W. Hudson
2002-06-14SF patch 568629 by Oren Tirosh: types made callable.Guido van Rossum
2002-06-11Fix for problem reported by Neal Norwitz. Tighten up calculation ofMichael W. Hudson
2002-06-11This is my nearly two year old patchMichael W. Hudson
2002-04-12Remove PyMalloc_New and PyMalloc_Del.Neil Schemenauer
2002-03-22Use pymalloc if it's enabled.Neil Schemenauer
2001-10-30Add values to tp_getattro and tp_flags so that dir(Ellipsis) willGuido van Rossum
2001-09-20Add optional docstrings to member descriptors. For backwardsGuido van Rossum
2001-08-02Merge of descr-branch back into trunk.Tim Peters
2001-03-20SF patch #408326 by Robin Thomas: slice objects comparable, notGuido van Rossum
2000-12-14Test for NULL returned from PyObject_NEW().Guido van Rossum
2000-07-09ANSI-fication of the sources.Fred Drake
2000-05-03Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum
1996-10-11Ellipses -> Ellipsis rename (the dictionary really says that it shouldGuido van Rossum
1996-07-30repr("...") -> "Ellipses"Guido van Rossum
1996-07-30Added sliceobject.cGuido van Rossum