Raymond Hettinger
1aef4440fb
Fix docstrings for itertools combinatoric functions.
17 years ago
Raymond Hettinger
d3a77c0ad3
Fix docstrings for itertools combinatoric functions.
17 years ago
Raymond Hettinger
9eac119ba8
Fix docstrings for itertools combinatoric functions.
17 years ago
Raymond Hettinger
36c3c027ad
Fix docstrings for itertools combinatoric functions.
17 years ago
Raymond Hettinger
a9311a3c50
Fix exception handling in itertools.izip_longest().
17 years ago
Raymond Hettinger
fc438518a0
Fix exception handling in itertools.izip_longest().
17 years ago
Raymond Hettinger
fa7dadd339
Fix exception handling in itertools.izip_longest().
17 years ago
Raymond Hettinger
743d8319ef
Fix space/tabs issue.
17 years ago
Raymond Hettinger
4da5faae21
Issue 7244: Fix indentation in C code. Fix test to not sent output to stdout.
17 years ago
Raymond Hettinger
80d49b33b1
Issue 7244: fix exception handling in itertools.izip_longest().
17 years ago
Benjamin Peterson
bbcd1eb64c
add sys prefix
17 years ago
Raymond Hettinger
0115e098da
Issue 6305: Clarify error message for large arguments to itertools.islice().
17 years ago
Raymond Hettinger
ec7bfb314c
Issue 6305: Clarify error message for large arguments to itertools.islice().
17 years ago
Benjamin Peterson
912fbcade3
Merged revisions 69855 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r69855 | benjamin.peterson | 2009-02-21 17:09:33 -0600 (Sat, 21 Feb 2009) | 1 line
fix compiler warnings
........
18 years ago
Benjamin Peterson
873389dbd8
fix compiler warnings
18 years ago
Raymond Hettinger
eb13fdda59
Port r69837: Fix keyword arguments for itertools.count(). Step arg without a start arg was ignored.
18 years ago
Raymond Hettinger
aa681c7b99
Fix keyword arguments for itertools.count().
Step arg without a start arg was ignored.
18 years ago
Raymond Hettinger
f4bb7f2100
Add keyword arg support to itertools.repeat().
18 years ago
Raymond Hettinger
182edaefb5
Add keyword arg support to itertools.repeat().
18 years ago
Raymond Hettinger
15a4950da1
Add keyword arg support to itertools.compress().
18 years ago
Raymond Hettinger
2e2909f584
Add keyword arg support to itertools.compress().
18 years ago
Benjamin Peterson
25e26a02f4
Merged revisions 69688,69690 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r69688 | benjamin.peterson | 2009-02-16 15:07:52 -0600 (Mon, 16 Feb 2009) | 1 line
fix compiler warnings
........
r69690 | benjamin.peterson | 2009-02-16 15:23:04 -0600 (Mon, 16 Feb 2009) | 1 line
PyList_Append() can fail
........
18 years ago
Benjamin Peterson
a7b0c12152
PyList_Append() can fail
18 years ago
Benjamin Peterson
062a7c3675
fix compiler warnings
18 years ago
Raymond Hettinger
d6280f4b78
Add GC support to count() objects.
18 years ago
Raymond Hettinger
b21d8109af
Add GC support to count() objects. Backport candidate.
18 years ago
Raymond Hettinger
9e8dbbcdcd
Add keyword argument support to itertools.count().
18 years ago
Raymond Hettinger
a4038038c6
Add keyword argument support to itertools.count().
18 years ago
Raymond Hettinger
6dfff19743
Fix spaces/tabs in example.
18 years ago
Raymond Hettinger
66373ab888
Fix spaces/tabs in example.
18 years ago
Raymond Hettinger
3072921d0e
Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments.
18 years ago
Raymond Hettinger
31c769ca89
Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments.
18 years ago
Benjamin Peterson
a86f2c06fd
Merged revisions 69466,69480 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r69466 | raymond.hettinger | 2009-02-09 12:39:41 -0600 (Mon, 09 Feb 2009) | 3 lines
Issue 5171: itertools.product docstring missing 'repeat' argument
........
r69480 | raymond.hettinger | 2009-02-09 19:24:05 -0600 (Mon, 09 Feb 2009) | 1 line
Issue 1818: collections.namedtuple() to support automatic renaming of invalid fieldnames.
........
18 years ago
Raymond Hettinger
94034ea584
Issue 5171: itertools.product docstring missing 'repeat' argument
18 years ago
Mark Dickinson
e94c679df0
Issue #1717 : rename tp_compare to tp_reserved. I'll change the
type of tp_compare in a separate commit, for ease of reversion
should things go wrong.
18 years ago
Raymond Hettinger
811f3dc174
Fix typo.
18 years ago
Raymond Hettinger
e76816b146
Fix typo.
18 years ago
Raymond Hettinger
3522a58665
Update itertools.__doc__ to include all tools.
18 years ago
Raymond Hettinger
36d816b0ab
Update itertools.__doc__ to include all tools.
18 years ago
Raymond Hettinger
d07d939c5e
Forward port r69001: itertools.combinations_with_replacement().
18 years ago
Raymond Hettinger
d081abc8be
Promote combinations_with_replacement() from a recipe to a regular itertool.
18 years ago
Raymond Hettinger
6b3b0fc4d4
Forward port r68941 adding itertools.compress().
18 years ago
Raymond Hettinger
2bcb8e9b0d
Promote compress() from a recipe to being a regular itertool.
18 years ago
Amaury Forgeot d'Arc
f343e01c17
Merged revisions 68560 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68560 | amaury.forgeotdarc | 2009-01-13 00:36:55 +0100 (mar., 13 janv. 2009) | 6 lines
#3720 : Interpreter crashes when an evil iterator removes its own next function.
Now the slot is filled with a function that always raises.
Will not backport: extensions compiled with 2.6.x would not run on 2.6.0.
........
18 years ago
Amaury Forgeot d'Arc
a40d573664
#3720 : Interpreter crashes when an evil iterator removes its own next function.
Now the slot is filled with a function that always raises.
Will not backport: extensions compiled with 2.6.x would not run on 2.6.0.
18 years ago
Raymond Hettinger
5bad41eefc
Merge in r68394 fixing itertools.permutations() and combinations().
18 years ago
Raymond Hettinger
5b913e31a1
Forward port r68394 for issue 4816.
18 years ago
Raymond Hettinger
825758c50b
- Issue 4816: itertools.combinations() and itertools.product were raising
a ValueError for values of *r* larger than the input iterable. They now
correctly return an empty iterator.
18 years ago
Martin v. Löwis
1a21451b1d
Implement PEP 3121: new module initialization and finalization API.
18 years ago
Georg Brandl
0c77a82c3d
Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,63989,64014-64015,64021-64022,64063-64065,64067 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r63829 | mark.summerfield | 2008-05-31 15:05:34 +0200 (Sat, 31 May 2008) | 4 lines
Added a note to [] that special forms & special chars lose their meaning
and backrefs can't be used inside []
........
r63830 | georg.brandl | 2008-05-31 16:40:09 +0200 (Sat, 31 May 2008) | 2 lines
#3010 : clarification about stdin/use_rawinput.
........
r63831 | georg.brandl | 2008-05-31 16:45:55 +0200 (Sat, 31 May 2008) | 2 lines
#3005 : add explaining sentence to easydialogs docs.
........
r63858 | georg.brandl | 2008-06-01 18:41:31 +0200 (Sun, 01 Jun 2008) | 2 lines
Add plain text make target.
........
r63865 | georg.brandl | 2008-06-01 21:24:36 +0200 (Sun, 01 Jun 2008) | 2 lines
Spaces vs. tabs.
........
r63879 | gregory.p.smith | 2008-06-02 00:57:47 +0200 (Mon, 02 Jun 2008) | 3 lines
Make the _H #define's match the header file names. Fix comments to
mention the correct type names.
........
r63882 | gregory.p.smith | 2008-06-02 01:48:47 +0200 (Mon, 02 Jun 2008) | 3 lines
Adds a Thread.getIdent() method to provide the _get_ident() value for
any given threading.Thread object. feature request issue 2871.
........
r63948 | alexandre.vassalotti | 2008-06-04 22:41:44 +0200 (Wed, 04 Jun 2008) | 2 lines
Fixed complex.__getnewargs__() to not emit another complex object.
........
r63970 | andrew.kuchling | 2008-06-06 01:33:54 +0200 (Fri, 06 Jun 2008) | 1 line
Document 'utc' parameter
........
r63971 | andrew.kuchling | 2008-06-06 01:35:31 +0200 (Fri, 06 Jun 2008) | 1 line
Add various items
........
r63972 | andrew.kuchling | 2008-06-06 01:35:48 +0200 (Fri, 06 Jun 2008) | 1 line
Grammar fix
........
r63976 | georg.brandl | 2008-06-06 09:34:50 +0200 (Fri, 06 Jun 2008) | 2 lines
Markup fix.
........
r63989 | thomas.heller | 2008-06-06 20:42:11 +0200 (Fri, 06 Jun 2008) | 2 lines
Add a reminder for the maintainer of whatsnew.
........
r64014 | georg.brandl | 2008-06-07 17:59:10 +0200 (Sat, 07 Jun 2008) | 3 lines
Factor out docstring dedenting from inspect.getdoc() into inspect.cleandoc()
to ease standalone use of the algorithm.
........
r64015 | georg.brandl | 2008-06-07 18:04:01 +0200 (Sat, 07 Jun 2008) | 2 lines
Revert unwanted changes.
........
r64021 | georg.brandl | 2008-06-07 20:16:12 +0200 (Sat, 07 Jun 2008) | 2 lines
X-ref to numbers module.
........
r64022 | georg.brandl | 2008-06-07 20:17:37 +0200 (Sat, 07 Jun 2008) | 3 lines
Document the "st" API, to avoid confusion with the "new" AST.
Add a note about using the new AST module.
........
r64063 | martin.v.loewis | 2008-06-10 07:03:35 +0200 (Tue, 10 Jun 2008) | 2 lines
Add Gregor Lingl.
........
r64064 | georg.brandl | 2008-06-10 09:45:28 +0200 (Tue, 10 Jun 2008) | 2 lines
Add the "ast" module, containing helpers to ease use of the "_ast" classes.
........
r64065 | raymond.hettinger | 2008-06-10 09:57:15 +0200 (Tue, 10 Jun 2008) | 1 line
Add Arnaud for his efforts on multi-arg set operations.
........
r64067 | georg.brandl | 2008-06-10 14:46:39 +0200 (Tue, 10 Jun 2008) | 2 lines
#2536 : fix itertools.permutations and itertools.combinations docstrings.
........
18 years ago