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 |
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
|
0ac63f1c50
|
#5296: sequence -> iterable.
|
2009-02-18 00:25:13 +00:00 |
Georg Brandl
|
52f6b6d500
|
#5297: fix example.
|
2009-02-18 00:22:55 +00:00 |
Tarek Ziadé
|
0e5001eff9
|
fixed the data_files inclusion behavior
|
2009-02-17 23:06:51 +00:00 |
Hirokazu Yamamoto
|
17a837e4db
|
Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0,
The file was resized to wrong size.
|
2009-02-17 13:17:26 +00:00 |
Marc-André Lemburg
|
1d0b5cc6dc
|
Clarify the deprecation of platform.dist().
Add versionadded tags.
|
2009-02-17 12:48:19 +00:00 |
Ronald Oussoren
|
6290178fc9
|
Fix issue776533.
|
2009-02-17 12:38:42 +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 |
Hirokazu Yamamoto
|
f6bbd0e71d
|
Issue #5292: Fixed mmap crash on its boundary access m[len(m)].
|
2009-02-17 10:12:10 +00:00 |
Tarek Ziadé
|
f68b5b8046
|
#2279 added the plain path case for data_files
|
2009-02-17 09:42:44 +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 |
Tarek Ziadé
|
f1c95fe004
|
note about #2279
|
2009-02-16 22:38:43 +00:00 |
Tarek Ziadé
|
ae9dc8c48a
|
#2279: use os.sep so the MANIFEST file test work on win32
|
2009-02-16 21:41:54 +00:00 |
Tarek Ziadé
|
7dd533963f
|
Fixed #2279: distutils.sdist.add_defaults now add files listed in package_data and data_files
|
2009-02-16 21:38:01 +00:00 |
Benjamin Peterson
|
a7b0c12152
|
PyList_Append() can fail
|
2009-02-16 21:23:04 +00:00 |
Benjamin Peterson
|
5781f32b4f
|
remove some PyBytes_* aliases that are not in 3.x
|
2009-02-16 21:09:09 +00:00 |
Benjamin Peterson
|
062a7c3675
|
fix compiler warnings
|
2009-02-16 21:07:52 +00:00 |
Raymond Hettinger
|
b21d8109af
|
Add GC support to count() objects. Backport candidate.
|
2009-02-16 20:39:12 +00:00 |
Benjamin Peterson
|
afb5a48be2
|
note functions that are not aliased to PyBytes_ #5280
|
2009-02-16 14:54:34 +00:00 |
Eric Smith
|
b6d0a52dc2
|
Added Ross Light to ACKS, for bug 4285 (r69331).
|
2009-02-16 09:56:39 +00:00 |
Mark Dickinson
|
bcf6b18eb7
|
A few more minor fixes in longobject.c
|
2009-02-15 15:48:39 +00:00 |