index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
/
rangeobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #16402: Merge fix from 3.2
Mark Dickinson
2012-11-04
1
-5/+5
|
\
|
*
Issue #16402: In range slicing, fix shadowing of exceptions from __index__ me...
Mark Dickinson
2012-11-04
1
-5/+5
*
|
Issue #14783: Merge changes from 3.2.
Chris Jerdonek
2012-10-07
1
-2/+3
|
\
\
|
|
/
|
*
Issue #14783: Improve int() docstring and also str(), range(), and slice().
Chris Jerdonek
2012-10-07
1
-1/+2
*
|
Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32)...
Antoine Pitrou
2012-05-16
1
-1/+1
|
\
\
|
|
/
|
*
Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32)...
Antoine Pitrou
2012-05-16
1
-1/+1
*
|
Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in t...
Antoine Pitrou
2012-04-04
1
-2/+2
*
|
Issue #14288: Serialization support for builtin iterators.
Kristján Valur Jónsson
2012-04-03
1
-0/+92
*
|
add introspection to range objects (closes #9896)
Benjamin Peterson
2011-11-05
1
-1/+9
*
|
Issue #13201: equality for range objects is now based on equality of the unde...
Mark Dickinson
2011-10-23
1
-2/+133
|
/
*
#11845: Fix typo in rangeobject.c that caused a crash in compute_slice_indice...
Ezio Melotti
2011-04-15
1
-1/+1
*
rangeobject.c (compute_slice_indices): Make function static.
Matthias Klose
2011-01-16
1
-1/+1
*
plug reference leak
Benjamin Peterson
2011-01-13
1
-2/+4
*
Issue 10889: Support slicing and indexing of large ranges (no docs changes, s...
Nick Coghlan
2011-01-12
1
-67/+306
*
Merge branches/pep-0384.
Martin v. Löwis
2010-12-03
1
-3/+2
*
Issue 2690: Add support for slicing and negative indices to range objects (in...
Nick Coghlan
2010-12-03
1
-100/+184
*
pep 7 actually wants the brace on a new line
Benjamin Peterson
2010-11-20
1
-22/+44
*
code style and simplification
Benjamin Peterson
2010-11-20
1
-72/+31
*
Add error handling in range_count.
Georg Brandl
2010-11-20
1
-1/+4
*
count() should return integers #10474
Benjamin Peterson
2010-11-20
1
-2/+2
*
Issue #9213: Add index and count methods to range objects, needed to
Daniel Stutzbach
2010-09-13
1
-49/+132
*
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou
2010-05-09
1
-127/+127
*
fix one visible and several possible refleaks in rangeobject.c
Benjamin Peterson
2009-11-16
1
-20/+17
*
Fix another case of potential signed overflow.
Mark Dickinson
2009-11-15
1
-1/+4
*
r76292 commit accidentally committed some extra code; remove it
Mark Dickinson
2009-11-15
1
-27/+0
*
Issue #7298: Fix a variety of problems leading to wrong results with
Mark Dickinson
2009-11-15
1
-55/+138
*
Issue #1766304: The range.__contains__ optimization should only be
Mark Dickinson
2009-09-24
1
-1/+1
*
Issue #1766304: Optimize membership testing for ranges: 'n in range(...)'
Mark Dickinson
2009-09-22
1
-0/+57
*
#6814: remove traces of xrange().
Georg Brandl
2009-09-01
1
-1/+1
*
Fix description of range_length_obj
Mark Dickinson
2009-06-28
1
-4/+3
*
this is also no longer true
Benjamin Peterson
2009-06-24
1
-3/+3
*
fix comment
Benjamin Peterson
2009-06-24
1
-5/+4
*
Issue #6334: Fix buggy internal length calculation in builtin range function
Mark Dickinson
2009-06-24
1
-9/+2
*
Fix SystemError and a wasps nest of ref counting issues.
Raymond Hettinger
2009-06-12
1
-8/+24
*
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson
2009-02-02
1
-3/+3
*
Issue #1717, stage 2: remove uses of tp_compare in Modules and most
Mark Dickinson
2009-02-01
1
-6/+5
*
Issue 2582: Fix pickling of range objects.
Alexandre Vassalotti
2008-06-10
1
-0/+9
*
#2689 Fix indentation in Objects/rangeobject.c
Benjamin Peterson
2008-04-25
1
-2/+2
*
Merge r60673
Raymond Hettinger
2008-02-09
1
-1/+1
*
Drop _PyLong_FitsInLong. Fixes #1666.
Martin v. Löwis
2007-12-20
1
-21/+36
*
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...
Christian Heimes
2007-12-02
1
-6/+6
*
Added all PyTypeObjects to the appropriate header files.
Christian Heimes
2007-11-29
1
-6/+6
*
Added view and iterator types to collections / _abcoll
Christian Heimes
2007-11-28
1
-1/+1
*
Found another memory leak in longrangeiter. And redo the previous correction
Amaury Forgeot d'Arc
2007-11-15
1
-1/+2
*
Correct a memory leak: the range() object was not properly freed.
Amaury Forgeot d'Arc
2007-11-15
1
-0/+1
*
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis
2007-07-21
1
-6/+3
*
Rename test_xrange.py to test_range.py and fix the
Walter Dörwald
2007-05-21
1
-2/+2
*
repr(range(10)) now returns 'range(0, 10)' for clarity.
Walter Dörwald
2007-05-21
1
-10/+3
*
Change range_repr() to use %R for the start/stop/step attributes.
Walter Dörwald
2007-05-20
1
-30/+6
*
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
Walter Dörwald
2007-05-18
1
-9/+9
[next]