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
/
enumobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Convert from long to Py_ssize_t.
Raymond Hettinger
2008-07-24
1
-10/+11
*
Don't allow keyword arguments to reversed().
Georg Brandl
2008-05-16
1
-1/+4
*
#2831: add start argument to enumerate(). Patch by Scott Dial and me.
Georg Brandl
2008-05-13
1
-5/+23
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...
Christian Heimes
2007-12-19
1
-3/+3
*
enumerate() is no longer bounded to using sequences shorter than LONG_MAX. T...
Raymond Hettinger
2007-10-03
1
-6/+49
*
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
Martin v. Löwis
2007-07-21
1
-7/+5
*
Do not let overflows in enumerate() and count() pass silently.
Raymond Hettinger
2007-02-08
1
-0/+6
*
Use Py_VISIT in all tp_traverse methods, instead of traversing manually or
Thomas Wouters
2006-04-15
1
-14/+3
*
More C++-compliance. Note especially listobject.c - to get C++ to accept the
Anthony Baxter
2006-04-11
1
-2/+0
*
Change int to Py_ssize_t in several places.
Martin v. Löwis
2006-03-07
1
-1/+1
*
Revert backwards-incompatible const changes.
Martin v. Löwis
2006-02-27
1
-1/+1
*
Use Py_ssize_t for counts and sizes.
Martin v. Löwis
2006-02-16
1
-3/+3
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-1/+1
*
Renamed _length_cue() to __length_hint__(). See:
Armin Rigo
2006-02-11
1
-2/+2
*
en_sit will be freed when en is DECREF'd. Don't double free.
Neal Norwitz
2005-12-11
1
-1/+0
*
Add const to several API functions that take char *.
Jeremy Hylton
2005-12-10
1
-1/+1
*
Convert iterator __len__() methods to a private API.
Raymond Hettinger
2005-09-24
1
-9/+11
*
SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes
Raymond Hettinger
2004-09-01
1
-4/+1
*
Fix docstring typo.
Raymond Hettinger
2004-08-25
1
-1/+1
*
* Add unittests for iterators that report their length
Raymond Hettinger
2004-04-12
1
-1/+12
*
Tidied up the implementations of reversed (including the custom ones
Raymond Hettinger
2004-03-10
1
-16/+20
*
Eliminate the double reverse option. It's only use case
Raymond Hettinger
2004-03-10
1
-13/+1
*
Make reversed() transparent with respect to length.
Raymond Hettinger
2004-02-10
1
-1/+13
*
Let reversed() work with itself.
Raymond Hettinger
2004-02-08
1
-1/+12
*
* Fix ref counting in extend() and extendleft().
Raymond Hettinger
2004-02-07
1
-2/+1
*
Optimize reversed(list) using a custom iterator.
Raymond Hettinger
2003-11-07
1
-2/+2
*
Implement and apply PEP 322, reverse iteration
Raymond Hettinger
2003-11-06
1
-0/+125
*
Use PyTuple_Pack() to simplify enumerate().
Raymond Hettinger
2003-11-02
1
-5/+1
*
* Beefed-up tests
Raymond Hettinger
2003-05-28
1
-13/+42
*
Add a useful docstring to enumerate.
Jeremy Hylton
2003-04-21
1
-1/+6
*
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
*
Remove the next() method -- one is supplied automatically by
Guido van Rossum
2002-07-16
1
-16/+11
*
Patch #568124: Add doc string macros.
Martin v. Löwis
2002-06-13
1
-2/+2
*
- New builtin function enumerate(x), from PEP 279. Example:
Guido van Rossum
2002-04-26
1
-0/+139