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 |
Tarek Ziadé
|
e3bc0eff25
|
Fixed #5316 : test failure in test_site
|
2009-02-25 22:29:27 +00:00 |
Mark Dickinson
|
b646487687
|
Replace long with twodigits, to avoid depending
on sizeof(digit) < sizeof(long)
|
2009-02-25 20:29:50 +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 |
Jeffrey Yasskin
|
43bff057c1
|
Tools/scripts/analyze_dxp.py, a module with some helper functions to
analyze the output of sys.getdxp().
|
2009-02-24 22:48:34 +00:00 |
Brett Cannon
|
b7019d8e9e
|
Expand upon test_site.test_s_option to try to debug its failure.
|
2009-02-24 22:01:02 +00:00 |
Raymond Hettinger
|
8c56f8890e
|
Backport 69934: Register xrange() as a Sequence.
|
2009-02-24 12:23:23 +00:00 |
Neil Schemenauer
|
c9332fada6
|
Fix call to os.waitpid, it does not take keyword args.
|
2009-02-24 04:23:25 +00:00 |
Benjamin Peterson
|
a18736b5d2
|
update README on running tests
|
2009-02-24 02:45:35 +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 |
Tarek Ziadé
|
11b34d07d8
|
more test coverage
|
2009-02-23 12:41:29 +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 |
Matthias Klose
|
8ad554fdbe
|
- Link the shared python library with $(MODLIBS).
|
2009-02-22 23:14:26 +00:00 |
Tarek Ziadé
|
7b47172bec
|
Removing unused __main__ sections
|
2009-02-22 20:15:41 +00:00 |
Tarek Ziadé
|
28bba74b7f
|
removing map and lambda usage, so the test is similar to py3k's branch one
|
2009-02-22 20:11:46 +00:00 |
Tarek Ziadé
|
90b7d56d91
|
moved distutils.text_file tests into a real unittest class
|
2009-02-22 19:58:12 +00:00 |
Antoine Pitrou
|
b03f532fe5
|
Revert debugging statements, culprit is possibly test_distutils (see #5316)
|
2009-02-22 18:20:46 +00:00 |
Antoine Pitrou
|
13d1690ecd
|
Try to make sense of the test_site buildbot failures
|
2009-02-22 17:25:52 +00:00 |
Tarek Ziadé
|
2595edccbc
|
using versionchanged instead of versionadded for distutils doc on sdist default files
|
2009-02-22 00:07:45 +00:00 |
Benjamin Peterson
|
873389dbd8
|
fix compiler warnings
|
2009-02-21 23:09:33 +00:00 |
Mark Dickinson
|
3e4caeb3bf
|
Issue #5341: Fix a variety of spelling errors.
|
2009-02-21 20:27:01 +00:00 |
Georg Brandl
|
a12a86e956
|
#5338, #5339: two types in the API manual.
|
2009-02-21 19:09:40 +00:00 |
Raymond Hettinger
|
be9b765c07
|
Speedup and simplify negative counter using count's new step argument.
|
2009-02-21 08:58:42 +00:00 |
Raymond Hettinger
|
aa681c7b99
|
Fix keyword arguments for itertools.count().
Step arg without a start arg was ignored.
|
2009-02-21 07:17:22 +00:00 |
Mark Dickinson
|
2752e9b527
|
Issue #5295: Typos in turtle.py
|
2009-02-20 20:42:53 +00:00 |
Collin Winter
|
8725dce2ae
|
Issue 5176: special-case string formatting in BINARY_MODULO implementation. This shows a modest (1-3%) speed-up in templating systems, for example.
|
2009-02-20 19:30:41 +00:00 |
Eric Smith
|
e9fb6863da
|
Issue #5247: Improve error message when unknown format codes are used when using str.format() with str, unicode, long, int, and float arguments.
|
2009-02-20 14:02:36 +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 |
Georg Brandl
|
4a698721e6
|
#5327: fix a broken link by joining it.
|
2009-02-20 07:48: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 |
Georg Brandl
|
a630735b31
|
#5317: update IronPython URL.
|
2009-02-19 16:34:51 +00:00 |
Vinay Sajip
|
1a0d2befea
|
#5287: Add exception handling around findCaller() call to help out IronPython.
|
2009-02-19 12:31:32 +00:00 |
Raymond Hettinger
|
8f9a1eee0d
|
Inline coefficients in gamma(). Add reflection formula. Add comments.
|
2009-02-19 09:50:24 +00:00 |
Georg Brandl
|
e7cb1ce895
|
#5310, #3558: fix operator precedence table.
|
2009-02-19 08:30:06 +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
|
182edaefb5
|
Add keyword arg support to itertools.repeat().
|
2009-02-19 02:38:25 +00:00 |
Raymond Hettinger
|
2e2909f584
|
Add keyword arg support to itertools.compress().
|
2009-02-19 02:15:14 +00:00 |
Raymond Hettinger
|
08259e8f25
|
Py3k warnings now automatically include -Qwarn for division.
|
2009-02-18 23:10:19 +00:00 |
Raymond Hettinger
|
c8223b09b0
|
Generalize the itertools.tee() recipe.
|
2009-02-18 20:54:53 +00:00 |