| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #27867: Function PySlice_GetIndicesEx() is deprecated and replaced with | Serhiy Storchaka | 2017-01-25 | 1 | -1/+1 |
|\ |
|
| * | Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ... | Serhiy Storchaka | 2016-12-16 | 1 | -1/+1 |
* | | Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro if | Serhiy Storchaka | 2017-01-25 | 1 | -24/+54 |
|/ |
|
* | fix slice cache finalization to use gc del | Benjamin Peterson | 2016-04-16 | 1 | -1/+1 |
* | add gc support to slice (closes #26659) | Benjamin Peterson | 2016-04-16 | 1 | -4/+15 |
* | Make Ellipsis and NotImplemented picklable through the reduce protocol. | Alexandre Vassalotti | 2013-11-24 | 1 | -1/+12 |
* | Issue #16451: Refactor to remove duplication between range and slice in slice... | Mark Dickinson | 2012-11-17 | 1 | -70/+78 |
* | Issue #14794: slice.indices no longer returns OverflowError for out-of-range ... | Mark Dickinson | 2012-11-10 | 1 | -8/+175 |
* | Issue #14783: Merge changes from 3.2. | Chris Jerdonek | 2012-10-07 | 1 | -11/+60 |
|\ |
|
| * | Issue #10227: Add an allocation cache for a single slice object. | Antoine Pitrou | 2011-11-18 | 1 | -7/+29 |
| * | merge 3.2 (#13199) | Benjamin Peterson | 2011-10-17 | 1 | -1/+5 |
| |\ |
|
| * | | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. | Brian Curtin | 2011-08-10 | 1 | -4/+2 |
| * | | make the types of None and Ellipsis callable | Benjamin Peterson | 2011-07-29 | 1 | -0/+29 |
* | | | Issue #14783: Improve int() docstring and also str(), range(), and slice(). | Chris Jerdonek | 2012-10-07 | 1 | -1/+2 |
| |/
|/| |
|
* | | plug possible refleak (closes #13199) | Benjamin Peterson | 2011-10-17 | 1 | -1/+5 |
|/ |
|
* | Merge branches/pep-0384. | Martin v. Löwis | 2010-12-03 | 1 | -3/+5 |
* | use helper hash unimplemented function | Benjamin Peterson | 2010-10-17 | 1 | -8/+1 |
* | In PySlice_IndicesEx, clip the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX] rath... | Mark Dickinson | 2010-08-06 | 1 | -1/+9 |
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -259/+259 |
* | Merged revisions 71734,71738-71739 via svnmerge from | Benjamin Peterson | 2009-04-20 | 1 | -1/+1 |
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -2/+2 |
* | Merged revisions 64365,64370,64406,64408-64409,64412,64416-64417,64420-64421,... | Benjamin Peterson | 2008-07-02 | 1 | -2/+3 |
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -1/+1 |
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -7/+7 |
* | #1316: remove redundant PyLong_Check calls when PyInt_Check was already called. | Georg Brandl | 2007-10-23 | 1 | -2/+2 |
* | Remove checking redundantly for checks of PyInt and PyLong. | Neal Norwitz | 2007-08-31 | 1 | -1/+1 |
* | Fix buglet in sliceobjects, they were not returning Py_NotImplemented when | Thomas Wouters | 2007-08-28 | 1 | -0/+5 |
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -6/+5 |
* | Add a format specifier %R to PyUnicode_FromFormat(), which embeds | Walter Dörwald | 2007-05-19 | 1 | -12/+1 |
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -9/+9 |
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -0/+10 |
* | Restructure comparison dramatically. There is no longer a default | Guido van Rossum | 2006-08-24 | 1 | -20/+50 |
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -1/+1 |
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -28/+47 |
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -6/+7 |
* | Disallow keyword arguments for type constructors that don't use them. | Georg Brandl | 2005-08-26 | 1 | -0/+3 |
* | SF bug #800796: Difference between hash() and __hash__() | Raymond Hettinger | 2003-09-05 | 1 | -1/+8 |
* | SF patch #659536: Use PyArg_UnpackTuple where possible. | Raymond Hettinger | 2002-12-29 | 1 | -1/+1 |
* | Handle really big steps in extended slices. | Michael W. Hudson | 2002-11-06 | 1 | -5/+2 |
* | Some days, I think my comment of | Michael W. Hudson | 2002-11-05 | 1 | -6/+12 |
* | Fix for platforms where int != long. | Michael W. Hudson | 2002-09-12 | 1 | -1/+1 |
* | Silly typo. Not sure how that got in. | Michael W. Hudson | 2002-07-19 | 1 | -1/+1 |
* | A few days ago, Guido said (in the thread "[Python-Dev] Python | Michael W. Hudson | 2002-07-19 | 1 | -1/+34 |
* | SF patch 568629 by Oren Tirosh: types made callable. | Guido van Rossum | 2002-06-14 | 1 | -1/+31 |
* | Fix for problem reported by Neal Norwitz. Tighten up calculation of | Michael W. Hudson | 2002-06-11 | 1 | -3/+5 |
* | This is my nearly two year old patch | Michael W. Hudson | 2002-06-11 | 1 | -0/+53 |
* | Remove PyMalloc_New and PyMalloc_Del. | Neil Schemenauer | 2002-04-12 | 1 | -2/+2 |
* | Use pymalloc if it's enabled. | Neil Schemenauer | 2002-03-22 | 1 | -2/+2 |
* | Add values to tp_getattro and tp_flags so that dir(Ellipsis) will | Guido van Rossum | 2001-10-30 | 1 | -14/+20 |
* | Add optional docstrings to member descriptors. For backwards | Guido van Rossum | 2001-09-20 | 1 | -1/+1 |