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
*
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
*
Merged revisions 55180-55183 via svnmerge from
Guido van Rossum
2007-05-08
1
-8/+13
*
Merged revisions 55007-55179 via svnmerge from
Guido van Rossum
2007-05-07
1
-152/+557
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-92/+83
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-7/+7
*
Renamed _length_cue() to __length_hint__(). See:
Armin Rigo
2006-02-11
1
-2/+2
*
Convert iterator __len__() methods to a private API.
Raymond Hettinger
2005-09-24
1
-8/+10
*
Disallow keyword arguments for type constructors that don't use them.
Georg Brandl
2005-08-26
1
-0/+3
*
Remove PyRange_New().
Raymond Hettinger
2004-12-03
1
-45/+0
*
Bug 1003935: xrange overflows
Tim Peters
2004-08-08
1
-1/+16
*
Trimmed trailing whitespace.
Tim Peters
2004-08-08
1
-5/+5
*
Add a missing decref.
Michael W. Hudson
2004-08-02
1
-0/+1
*
Tidied up the implementations of reversed (including the custom ones
Raymond Hettinger
2004-03-10
1
-1/+13
*
Implement and apply PEP 322, reverse iteration
Raymond Hettinger
2003-11-06
1
-1/+36
*
Renamed PyObject_GenericGetIter to PyObject_SelfIter
Raymond Hettinger
2003-03-17
1
-1/+1
*
Created PyObject_GenericGetIter().
Raymond Hettinger
2003-03-17
1
-8/+1
*
Update comments about the performance of xrange().
Raymond Hettinger
2002-12-11
1
-2/+2
*
Restore attribute access so that the following work again:
Raymond Hettinger
2002-11-07
1
-1/+1
*
Untested code for 64-bit platforms. range_length() is declared as int
Guido van Rossum
2002-09-11
1
-1/+8
*
staticforward bites the dust.
Jeremy Hylton
2002-07-17
1
-2/+2
*
Remove the next() method -- one is supplied automatically by
Guido van Rossum
2002-07-16
1
-10/+1
*
Patch #568124: Add doc string macros.
Martin v. Löwis
2002-06-13
1
-2/+2
[next]