summaryrefslogtreecommitdiffstats
path: root/Objects/sliceobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #10227: Add an allocation cache for a single slice object.Antoine Pitrou2011-11-181-7/+29
* merge 3.2 (#13199)Benjamin Peterson2011-10-171-1/+5
|\
| * plug possible refleak (closes #13199)Benjamin Peterson2011-10-171-1/+5
* | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.Brian Curtin2011-08-111-4/+2
* | make the types of None and Ellipsis callableBenjamin Peterson2011-07-291-0/+29
|/
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-3/+5
* use helper hash unimplemented functionBenjamin Peterson2010-10-171-8/+1
* In PySlice_IndicesEx, clip the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX] rath...Mark Dickinson2010-08-061-1/+9
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-259/+259
* Merged revisions 71734,71738-71739 via svnmerge fromBenjamin Peterson2009-04-201-1/+1
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-2/+2
* Merged revisions 64365,64370,64406,64408-64409,64412,64416-64417,64420-64421,...Benjamin Peterson2008-07-021-2/+3
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-7/+7
* #1316: remove redundant PyLong_Check calls when PyInt_Check was already called.Georg Brandl2007-10-231-2/+2
* Remove checking redundantly for checks of PyInt and PyLong.Neal Norwitz2007-08-311-1/+1
* Fix buglet in sliceobjects, they were not returning Py_NotImplemented whenThomas Wouters2007-08-281-0/+5
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-6/+5
* Add a format specifier %R to PyUnicode_FromFormat(), which embedsWalter Dörwald2007-05-191-12/+1
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-9/+9
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-0/+10
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-20/+50
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-1/+1
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-28/+47
* Merge ssize_t branch.Martin v. Löwis2006-02-151-6/+7
* Disallow keyword arguments for type constructors that don't use them.Georg Brandl2005-08-261-0/+3
* SF bug #800796: Difference between hash() and __hash__()Raymond Hettinger2003-09-051-1/+8
* SF patch #659536: Use PyArg_UnpackTuple where possible.Raymond Hettinger2002-12-291-1/+1
* Handle really big steps in extended slices.Michael W. Hudson2002-11-061-5/+2
* Some days, I think my comment ofMichael W. Hudson2002-11-051-6/+12
* Fix for platforms where int != long.Michael W. Hudson2002-09-121-1/+1
* Silly typo. Not sure how that got in.Michael W. Hudson2002-07-191-1/+1
* A few days ago, Guido said (in the thread "[Python-Dev] PythonMichael W. Hudson2002-07-191-1/+34
* SF patch 568629 by Oren Tirosh: types made callable.Guido van Rossum2002-06-141-1/+31
* Fix for problem reported by Neal Norwitz. Tighten up calculation ofMichael W. Hudson2002-06-111-3/+5
* This is my nearly two year old patchMichael W. Hudson2002-06-111-0/+53
* Remove PyMalloc_New and PyMalloc_Del.Neil Schemenauer2002-04-121-2/+2
* Use pymalloc if it's enabled.Neil Schemenauer2002-03-221-2/+2
* Add values to tp_getattro and tp_flags so that dir(Ellipsis) willGuido van Rossum2001-10-301-14/+20
* Add optional docstrings to member descriptors. For backwardsGuido van Rossum2001-09-201-1/+1
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-35/+35
* SF patch #408326 by Robin Thomas: slice objects comparable, notGuido van Rossum2001-03-201-3/+23
* Test for NULL returned from PyObject_NEW().Guido van Rossum2000-12-141-0/+3
* ANSI-fication of the sources.Fred Drake2000-07-091-19/+7
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-3/+2
* Ellipses -> Ellipsis rename (the dictionary really says that it shouldGuido van Rossum1996-10-111-9/+9
* repr("...") -> "Ellipses"Guido van Rossum1996-07-301-1/+1
* Added sliceobject.cGuido van Rossum1996-07-301-0/+184