summaryrefslogtreecommitdiff
path: root/Objects/rangeobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #28376: Creating instances of range_iterator by calling range_iteratorSerhiy Storchaka2016-10-081-41/+0
* Issue #28376: Creating instances of range_iterator by calling range_iteratorSerhiy Storchaka2016-10-081-0/+7
* Merge from 3.5.Serhiy Storchaka2016-10-081-3/+11
|\
| * Issue #28376: The constructor of range_iterator now checks that step is not 0.Serhiy Storchaka2016-10-081-3/+11
* | Issue #28045: Merge from 3.5Berker Peksag2016-09-121-1/+1
|\ \ | |/
| * Issue #28045: Fix comment in range_contains_long()Berker Peksag2016-09-121-1/+1
* | replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-1/+1
* | Issue #27333: Simplified testing step on 0.Serhiy Storchaka2016-06-181-11/+4
* | Issue #27342: Replaced some Py_XDECREFs with Py_DECREFs.Serhiy Storchaka2016-06-181-5/+5
|/
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-1/+1
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-3/+3
* Issue #20440: Applied yet one patch for using Py_SETREF.Serhiy Storchaka2015-12-271-5/+3
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-2/+1
* Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-301-2/+2
|\
| * merge 3.4 (#22785)Benjamin Peterson2015-04-221-2/+2
| |\
| | * Removed unintentional trailing spaces in non-external and non-generated C files.Serhiy Storchaka2015-03-181-2/+2
* | | Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-301-1/+4
|/ /
* | improved range docstring (closes #22785)Benjamin Peterson2015-04-221-1/+5
|/
* remove buzzword (closes #23210)Benjamin Peterson2015-01-091-1/+1
* Make the various iterators' "setstate" sliently and consistently clip theKristj?n Valur J?nsson2014-03-051-199/+6
|\
| * Merge with 3.3Kristj?n Valur J?nsson2014-03-041-1/+1
| |\
| * \ #19067: merge with 3.3.Ezio Melotti2013-10-061-3/+3
| |\ \
| * \ \ Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
| |\ \ \
| * | | | Issue #16451: Refactor to remove duplication between range and slice in slice...Mark Dickinson2012-11-171-199/+6
* | | | | Make the various iterators' "setstate" sliently and consistently clip theKristj?n Valur J?nsson2014-03-051-4/+27
| |_|_|/ |/| | |
* | | | Fix pickling of rangeiter. rangeiter_setstate would not allow setting itKristj?n Valur J?nsson2014-03-041-1/+1
| |_|/ |/| |
* | | #19067: use imperative mood in range object docstrings. Patch by Marco Buttu.Ezio Melotti2013-10-061-3/+3
| |/ |/|
* | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-1/+1
|/
* Issue #16402: Merge fix from 3.2Mark Dickinson2012-11-041-3/+234
|\
| * Issue #14783: Merge changes from 3.2.Chris Jerdonek2012-10-071-3/+234
| |\
| | * Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32)...Antoine Pitrou2012-05-161-3/+234
| | |\
| | | * Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in t...Antoine Pitrou2012-04-051-2/+2
| | | * Issue #14288: Serialization support for builtin iterators.Kristj?n Valur J?nsson2012-04-031-0/+92
| | | * add introspection to range objects (closes #9896)Benjamin Peterson2011-11-051-1/+9
| | | * Issue #13201: equality for range objects is now based on equality of the unde...Mark Dickinson2011-10-231-2/+133
* | | | Issue #16402: In range slicing, fix shadowing of exceptions from __index__ me...Mark Dickinson2012-11-041-5/+5
|/ / /
* | | Issue #14783: Improve int() docstring and also str(), range(), and slice().Chris Jerdonek2012-10-071-1/+2
|/ /
* | Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32)...Antoine Pitrou2012-05-161-1/+1
|/
* #11845: Fix typo in rangeobject.c that caused a crash in compute_slice_indice...Ezio Melotti2011-04-151-1/+1
* rangeobject.c (compute_slice_indices): Make function static.Matthias Klose2011-01-161-1/+1
* plug reference leakBenjamin Peterson2011-01-131-2/+4
* Issue 10889: Support slicing and indexing of large ranges (no docs changes, s...Nick Coghlan2011-01-121-67/+306
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-3/+2
* Issue 2690: Add support for slicing and negative indices to range objects (in...Nick Coghlan2010-12-031-100/+184
* pep 7 actually wants the brace on a new lineBenjamin Peterson2010-11-201-22/+44
* code style and simplificationBenjamin Peterson2010-11-201-72/+31
* Add error handling in range_count.Georg Brandl2010-11-201-1/+4
* count() should return integers #10474Benjamin Peterson2010-11-201-2/+2
* Issue #9213: Add index and count methods to range objects, needed toDaniel Stutzbach2010-09-131-49/+132