summaryrefslogtreecommitdiff
path: root/Objects/sliceobject.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-311-3/+3
* bpo-34229: Check start and stop of slice object to be long when they are not ...Xtreak2018-07-261-2/+2
* bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1531) (#1480)Xiang Zhang2017-05-101-3/+5
* bpo-30255: Clip step in _PySlice_Unpack() (#1429)Victor Stinner2017-05-031-0/+7
* bpo-30074: Fix compile warnings of _PySlice_Unpack and convert missed (#1154)Serhiy Storchaka2017-04-151-3/+3
* bpo-27867: Expand the PySlice_GetIndicesEx macro. (#1023) (#1046)Serhiy Storchaka2017-04-081-2/+2
* Issue #27867: Replaced function PySlice_GetIndicesEx() with a macro.Serhiy Storchaka2017-01-251-23/+55
* add gc support to slice (closes #26659)Benjamin Peterson2016-04-161-4/+15
* Issue #14783: Backport changes from 3.2.Chris Jerdonek2012-10-071-1/+2
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-235/+235
* many more types to initialize (I had to expose some of them)Benjamin Peterson2009-04-181-1/+1
* Issue #3004: Minor fix to slice.indices(). slice(-10).indices(9) nowMark Dickinson2008-06-201-2/+3
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-9/+9
* Renamed PyString to PyBytesChristian Heimes2008-05-261-9/+9
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-1/+1
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-6/+5
* SF 1191699: Make slices picklableRaymond Hettinger2007-04-111-0/+10
* Patch #1538606, Patch to fix __index__() clipping.Neal Norwitz2006-08-121-1/+1
* Allow long integers in PySlice_GetIndices.Martin v. Löwis2006-04-031-3/+3
* Use Py_ssize_t in slicesNeal Norwitz2006-04-031-5/+5
* Remove unnecessary casts in type object initializers.Georg Brandl2006-03-301-20/+20
* Stop duplicating code and handle slice indices consistently and correctlyNeal Norwitz2006-03-231-0/+19
* 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