summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-2156-93/+93
|
* #5338, #5339: two types in the API manual.Georg Brandl2009-02-212-2/+2
|
* Speedup and simplify negative counter using count's new step argument.Raymond Hettinger2009-02-211-3/+3
|
* Fix keyword arguments for itertools.count().Raymond Hettinger2009-02-212-28/+45
| | | | Step arg without a start arg was ignored.
* Issue #5295: Typos in turtle.pyMark Dickinson2009-02-201-21/+21
|
* Issue 5176: special-case string formatting in BINARY_MODULO implementation. ↵Collin Winter2009-02-202-1/+10
| | | | This shows a modest (1-3%) speed-up in templating systems, for example.
* Issue #5247: Improve error message when unknown format codes are used when ↵Eric Smith2009-02-202-17/+35
| | | | using str.format() with str, unicode, long, int, and float arguments.
* Fix punctuation.Georg Brandl2009-02-201-1/+1
|
* At least separate imports from other statements.Georg Brandl2009-02-203-9/+14
|
* #5327: fix a broken link by joining it.Georg Brandl2009-02-201-2/+2
|
* revert r69777 since all the experts agree that extra import lines distract ↵Benjamin Peterson2009-02-2031-96/+42
| | | | from the code
* Since we recommend one module per import line, reflect this also in theJeroen Ruigrok van der Werven2009-02-1931-42/+96
| | | | documentation.
* #5317: update IronPython URL.Georg Brandl2009-02-191-2/+1
|
* #5287: Add exception handling around findCaller() call to help out IronPython.Vinay Sajip2009-02-192-3/+10
|
* Inline coefficients in gamma(). Add reflection formula. Add comments.Raymond Hettinger2009-02-191-10/+18
|
* #5310, #3558: fix operator precedence table.Georg Brandl2009-02-191-28/+18
|
* Add links to helpful external resources.Raymond Hettinger2009-02-192-4/+10
|
* Add an example for math.fsum() and elaborate on the accurary note.Raymond Hettinger2009-02-191-8/+12
|
* Add some cross-references to the docs. Simplify the python code equivalent ↵Raymond Hettinger2009-02-193-10/+16
| | | | for izip(). Supply an optional argument for the nth() recipe.
* Add keyword arg support to itertools.repeat().Raymond Hettinger2009-02-192-7/+7
|
* Add keyword arg support to itertools.compress().Raymond Hettinger2009-02-192-6/+5
|
* Py3k warnings now automatically include -Qwarn for division.Raymond Hettinger2009-02-182-0/+5
|
* Generalize the itertools.tee() recipe.Raymond Hettinger2009-02-181-24/+24
|
* Clarify socket timeout behavior vs system network stack behavior on connectGregory P. Smith2009-02-181-4/+7
| | | | for issue5293.
* #5268: mention VMSError.Georg Brandl2009-02-181-0/+5
|
* #5296: sequence -> iterable.Georg Brandl2009-02-181-5/+5
|
* #5297: fix example.Georg Brandl2009-02-181-1/+1
|
* fixed the data_files inclusion behaviorTarek Ziadé2009-02-173-3/+8
|
* Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0,Hirokazu Yamamoto2009-02-173-2/+26
| | | | The file was resized to wrong size.
* Clarify the deprecation of platform.dist().Marc-André Lemburg2009-02-171-1/+11
| | | | Add versionadded tags.
* Fix issue776533.Ronald Oussoren2009-02-171-0/+2
|
* Fixup intro paragraphs for the itertools docs. Add some tables for quick ↵Raymond Hettinger2009-02-171-27/+52
| | | | reference.
* Issue #5292: Fixed mmap crash on its boundary access m[len(m)].Hirokazu Yamamoto2009-02-173-2/+8
|
* #2279 added the plain path case for data_filesTarek Ziadé2009-02-172-7/+23
|
* Fix-up intro paragraph for collections docs.Raymond Hettinger2009-02-171-13/+13
|
* Add explanation for super(type1, type2).Raymond Hettinger2009-02-161-1/+1
|
* Issue 5229: Documentation for super() neglects to say what super() actually doesRaymond Hettinger2009-02-161-1/+5
|
* note about #2279Tarek Ziadé2009-02-161-0/+3
|
* #2279: use os.sep so the MANIFEST file test work on win32Tarek Ziadé2009-02-161-6/+6
|
* Fixed #2279: distutils.sdist.add_defaults now add files listed in ↵Tarek Ziadé2009-02-166-43/+162
| | | | package_data and data_files
* PyList_Append() can failBenjamin Peterson2009-02-161-2/+4
|
* remove some PyBytes_* aliases that are not in 3.xBenjamin Peterson2009-02-162-6/+2
|
* fix compiler warningsBenjamin Peterson2009-02-161-5/+5
|
* Add GC support to count() objects. Backport candidate.Raymond Hettinger2009-02-162-4/+19
|
* note functions that are not aliased to PyBytes_ #5280Benjamin Peterson2009-02-161-2/+28
|
* Added Ross Light to ACKS, for bug 4285 (r69331).Eric Smith2009-02-161-0/+1
|
* A few more minor fixes in longobject.cMark Dickinson2009-02-152-5/+5
|
* Issue #5260: Various portability and standards compliance fixes, optimizationsMark Dickinson2009-02-154-54/+46
| | | | | | | and cleanups in Objects/longobject.c. The most significant change is that longs now use less memory: average savings are 2 bytes per long on 32-bit systems and 6 bytes per long on 64-bit systems. (This memory saving already exists in py3k.)
* Fixed typo.Hirokazu Yamamoto2009-02-151-1/+1
|
* #5179: don't leak PIPE fds when child execution fails.Georg Brandl2009-02-142-0/+19
|