Commit graph

1744 commits

Author SHA1 Message Date
Gregory P. Smith
ae91d0907d Adds an optional flags argument to re.split, re.sub and re.subn to be
consistent with the other re module functions.
2009-03-02 05:13:57 +00:00
Gregory P. Smith
0261e5d0b6 The note about caching of regular expression objects was incorrect ReST and
thus invisible in the compiled documentation.  Fixed.  Also I cleaned up the
wording.
2009-03-02 04:53:24 +00:00
Raymond Hettinger
3bac8b20b5 Fix docs for ConfigParser. 2009-03-01 02:04:32 +00:00
Jeffrey Yasskin
68d6852006 Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with
POP_JUMP_IF_{TRUE,FALSE} and JUMP_IF_{TRUE,FALSE}_OR_POP. This avoids executing
a POP_TOP on each conditional and sometimes allows the peephole optimizer to
skip a JUMP_ABSOLUTE entirely. It speeds up list comprehensions significantly.
2009-02-28 19:03:21 +00:00
Hirokazu Yamamoto
02172ddbee Binary flag is needed on windows. 2009-02-28 15:24:00 +00:00
Georg Brandl
5c189b16a8 #5365: add quick look conversion table for different time representations. 2009-02-27 16:59:03 +00:00
Georg Brandl
ee6361f7d8 #5363: fix cmpfiles() docs. Another instance where a prose description is twice as long as the code. 2009-02-27 16:39:26 +00:00
Georg Brandl
da2790c47d #5361: fix typo. 2009-02-27 16:23:18 +00:00
Georg Brandl
13813f7092 Document that setting sys.py3kwarning wont do anything. 2009-02-26 17:36:26 +00:00
Benjamin Peterson
a168698ab3 fix str.format()'s first arg #5371 2009-02-26 00:30:11 +00:00
Raymond Hettinger
ed955f108f Fix typo. 2009-02-26 00:05:24 +00:00
Raymond Hettinger
a665853bab Clarify Counter() docs. 2009-02-25 22:48:24 +00:00
Raymond Hettinger
afe496dc46 Remove reference to zero argument form of super() in 2.x docs. 2009-02-25 01:06:52 +00:00
Raymond Hettinger
b762d58544 More markup and spelling fixes. 2009-02-25 00:52:37 +00:00
Raymond Hettinger
eb7cbb94c5 Restore Py2.x version of sample call to super(). 2009-02-25 00:39:47 +00:00
Raymond Hettinger
9766033b7c Sync-up py3.1 doc updates for super(). 2009-02-25 00:37:57 +00:00
Raymond Hettinger
d47442e3cb Update itertools recipes to use next(). 2009-02-23 19:32:55 +00:00
Georg Brandl
52bc7b85fd Fix grammar. 2009-02-23 18:33:48 +00:00
Georg Brandl
de196911f1 #5352: str.count() counts non-overlapping instances. 2009-02-23 15:51:27 +00:00
Georg Brandl
89d4f0d7c5 #5349: C++ pure virtuals can also have an implementation. 2009-02-23 11:24:46 +00:00
Georg Brandl
528f8810aa #5348: format() converts all kinds of values. 2009-02-23 10:24:23 +00:00
Mark Dickinson
3e4caeb3bf Issue #5341: Fix a variety of spelling errors. 2009-02-21 20:27:01 +00:00
Georg Brandl
8b8c2df9b1 Fix punctuation. 2009-02-20 08:45:47 +00:00
Georg Brandl
6b5dbaa6c9 At least separate imports from other statements. 2009-02-20 08:22:21 +00:00
Benjamin Peterson
a7b55a33f8 revert r69777 since all the experts agree that extra import lines distract from the code 2009-02-20 03:31:23 +00:00
Jeroen Ruigrok van der Werven
5149742e8b Since we recommend one module per import line, reflect this also in the
documentation.
2009-02-19 18:52:21 +00:00
Raymond Hettinger
749e6d0a01 Add links to helpful external resources. 2009-02-19 06:55:03 +00:00
Raymond Hettinger
7d854955e1 Add an example for math.fsum() and elaborate on the accurary note. 2009-02-19 05:51:41 +00:00
Raymond Hettinger
f9bce83e71 Add some cross-references to the docs. Simplify the python code equivalent for izip(). Supply an optional argument for the nth() recipe. 2009-02-19 05:34:35 +00:00
Raymond Hettinger
c8223b09b0 Generalize the itertools.tee() recipe. 2009-02-18 20:54:53 +00:00
Gregory P. Smith
8367becc02 Clarify socket timeout behavior vs system network stack behavior on connect
for issue5293.
2009-02-18 05:46:11 +00:00
Georg Brandl
580d7c1f57 #5268: mention VMSError. 2009-02-18 00:31:36 +00:00
Georg Brandl
52f6b6d500 #5297: fix example. 2009-02-18 00:22:55 +00:00
Marc-André Lemburg
1d0b5cc6dc Clarify the deprecation of platform.dist().
Add versionadded tags.
2009-02-17 12:48:19 +00:00
Raymond Hettinger
0aee942a08 Fixup intro paragraphs for the itertools docs. Add some tables for quick reference. 2009-02-17 11:00:27 +00:00
Raymond Hettinger
f746a1f1e4 Fix-up intro paragraph for collections docs. 2009-02-17 08:33:01 +00:00
Raymond Hettinger
7c98a6d4dc Add explanation for super(type1, type2). 2009-02-16 23:00:25 +00:00
Raymond Hettinger
fd04870a3d Issue 5229: Documentation for super() neglects to say what super() actually does 2009-02-16 22:42:54 +00:00
Hirokazu Yamamoto
5b8c701eef Fixed typo. 2009-02-15 09:19:48 +00:00
Raymond Hettinger
a4038038c6 Add keyword argument support to itertools.count(). 2009-02-14 00:25:51 +00:00
Georg Brandl
5ccf2ae21c #1661108: note that urlsafe encoded string can contain "=". 2009-02-13 10:56:50 +00:00
Georg Brandl
8fba5b337c #4894: document "newurl" parameter to redirect_request(). 2009-02-13 10:40:14 +00:00
Raymond Hettinger
31c769ca89 Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments. 2009-02-12 05:39:46 +00:00
Benjamin Peterson
1312b4bcfd os.fsync() should be used to ensure that data is written to disk 2009-02-12 03:50:00 +00:00
Raymond Hettinger
e4ae63c402 Clean-up named tuple docs. 2009-02-11 00:06:17 +00:00
Raymond Hettinger
322daea7c3 Issue 1818: collections.namedtuple() to support automatic renaming of invalid fieldnames. 2009-02-10 01:24:05 +00:00
Benjamin Peterson
b8e17f7370 a few edits and typos 2009-02-08 15:14:57 +00:00
Benjamin Peterson
c5e68b1898 document numliterals fixer 2009-02-08 14:38:13 +00:00
Nick Coghlan
0194f5bc98 Issue #4512 closeout: Make ZipImport.get_filename() a public method 2009-02-08 03:17:00 +00:00
Nick Coghlan
d39600e69f Issue 4195: Restore the ability to execute packages with the -m switch (but this time in a way that leaves the import machinery in a valid state). (Original patch by Andi Vajda) 2009-02-08 01:26:34 +00:00