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
*
#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
*
Pyrangeiter_Type && range_iter should be static
Neal Norwitz
2002-06-06
1
-5/+5
*
Skip Montanaro's patch, SF 559833, exposing xrange type in builtins.
Raymond Hettinger
2002-06-05
1
-2/+84
*
SF 564601 adding rangeiterobject to make xrange() iterate like range().
Raymond Hettinger
2002-06-05
1
-46/+91
*
Inverted test for small speedup
Raymond Hettinger
2002-06-04
1
-5/+4
*
Patch #551410: Implement tp_getiter.
Martin v. Löwis
2002-05-08
1
-1/+51
*
Remove old deprecated features from the xrange object.
Fred Drake
2002-05-02
1
-273/+40
*
Fix attribute access for the xrange objects. The tp_getattr and tp_getattro
Fred Drake
2002-05-02
1
-31/+38
*
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
*
Fix spelling mistakes. Bugfix candidates.
Neal Norwitz
2002-01-29
1
-1/+1
*
long_mul(): The PyNumber_Multiply() call can return a long if the
Guido van Rossum
2001-12-04
1
-0/+6
*
repr's converted to using PyString_FromFormat() instead of sprintf'ing
Barry Warsaw
2001-08-24
1
-19/+19
*
Patch #427190: Implement and use METH_NOARGS and METH_O.
Martin v. Löwis
2001-08-16
1
-4/+1
*
Merge of descr-branch back into trunk.
Tim Peters
2001-08-02
1
-16/+28
*
Re-add 'advanced' xrange features, adding DeprecationWarnings as discussed
Thomas Wouters
2001-07-09
1
-16/+219
*
Rip out the fancy behaviors of xrange that nobody uses: repeat, slice,
Guido van Rossum
2001-07-05
1
-222/+15
[next]