summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* add the multiprocessing package to fulfill PEP 371Benjamin Peterson2008-06-1132-0/+12500
|
* convert test_struct to a unittest thanks to Giampaolo RodolaBenjamin Peterson2008-06-111-624/+524
| | | | | I had to disable one test because it was functioning incorrectly, see #1530559 I also removed the debugging prints
* Handle the case with zero arguments.Raymond Hettinger2008-06-112-0/+9
|
* Update numbers doc for the Integral simplification.Raymond Hettinger2008-06-111-4/+4
|
* Mini-PEP: Simplifying numbers.pyRaymond Hettinger2008-06-111-50/+17
| | | | | | * Convert binary methods in Integral to mixin methods * Remove three-arg __pow__ as a required method * Make __int__ the root method instead of __long__.
* backport of 64096Benjamin Peterson2008-06-101-1/+1
|
* Correct test_pydoc for win32 platforms, to account for normalized URLs:Amaury Forgeot d'Arc2008-06-101-1/+6
| | | | C:\temp => file:///C|temp/
* Rename bytesobject.c back to stringobject.c to keep with the PyString theme.Gregory P. Smith2008-06-106-8/+6
| | | | Part of reverting most of r63675 per the mailing list discussion.
* Documented the new AST constructor.Armin Ronacher2008-06-101-0/+5
|
* Fix a formatting error in the ast documentation.Armin Ronacher2008-06-101-1/+1
|
* More reverting of r63675 per the mailing list discussions. This restoresGregory P. Smith2008-06-103-481/+481
| | | | | occurances of PyBytes_ in the code to their original PyString_ names. The bytesobject.c file will be renamed back to stringobject.c in a future checkin.
* Fixed test to reflect new filedispatcher semantics, as well as twoJosiah Carlson2008-06-102-4/+4
| | | | NameErrors pointed out by Giampaolo.
* NEWS entry for:Thomas Heller2008-06-101-0/+4
| | | | Add an optional 'offset' parameter to byref, defaulting to zero.
* Add an optional 'offset' parameter to byref, defaultingto zero.Thomas Heller2008-06-101-4/+16
|
* more markup fix.Georg Brandl2008-06-101-9/+9
|
* fix markupBenjamin Peterson2008-06-101-5/+6
|
* #2536: fix itertools.permutations and itertools.combinations docstrings.Georg Brandl2008-06-101-3/+3
|
* Issue 3048: Fixed sys.getsizeof for unicode objects.Robert Schuppenies2008-06-102-7/+52
|
* Add Arnaud for his efforts on multi-arg set operations.Raymond Hettinger2008-06-101-0/+1
|
* Add the "ast" module, containing helpers to ease use of the "_ast" classes.Georg Brandl2008-06-108-95/+662
|
* Add Gregor Lingl.Martin v. Löwis2008-06-101-0/+3
|
* Applying updated patch from Issue 1736190, which addresses partialJosiah Carlson2008-06-105-103/+213
| | | | | | issues in: 909005 and 17361001, as well as completely as possible issues 539444, 760475, 777588, 889153, 953599, 1025525, 1063924, and 658749. This patch also includes doc and test updates as necessary.
* Added better pickling support to xrange objects.Alexandre Vassalotti2008-06-102-12/+13
| | | | Cleaned up the unit test.
* Issue 2582: Fix pickling of xrange objects.Alexandre Vassalotti2008-06-102-0/+21
|
* Let set.intersection() and set.intersection_update() take multiple input ↵Raymond Hettinger2008-06-094-8/+54
| | | | arguments.
* Unhappy buildbots. Revert 64052. Long doubles have unexpected effects on ↵Raymond Hettinger2008-06-091-20/+24
| | | | some builds.
* Address double-rounding scenarios by setting all variables to long doubles.Raymond Hettinger2008-06-091-24/+19
|
* Let set.union() and set.update() accept multiple inputs.Raymond Hettinger2008-06-094-19/+57
|
* Issue #2138: Add math.factorial().Raymond Hettinger2008-06-094-0/+71
|
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-09173-2280/+2275
| | | | | | | http://mail.python.org/pipermail/python-dev/2008-June/079988.html Python 2.6 should stick with PyString_* in its codebase. The PyBytes_* names in the spirit of 3.0 are available via a #define only. See the email thread.
* Issue3065: Fixed pickling of named tuples. Added tests.Raymond Hettinger2008-06-093-2/+26
|
* warn about parameter tuple unpackingBenjamin Peterson2008-06-082-0/+9
|
* Warn about assigning to Py3k keywords (True and False)Benjamin Peterson2008-06-082-33/+76
|
* add an ast_warn helper function to make adding those Py3k warnings easierBenjamin Peterson2008-06-081-7/+15
|
* Argh, I read it wrong. Reverted 64036 and added a clarifying remark.Georg Brandl2008-06-081-2/+2
|
* #3028: tokenize passes the physical line.Georg Brandl2008-06-081-10/+9
|
* change Py3k backquote warning to a SyntaxWarning and add a testBenjamin Peterson2008-06-082-1/+7
|
* capitalization nitBenjamin Peterson2008-06-071-1/+1
|
* Document the "st" API, to avoid confusion with the "new" AST.Georg Brandl2008-06-071-78/+89
| | | | Add a note about using the new AST module.
* X-ref to numbers module.Georg Brandl2008-06-071-3/+3
|
* Backport docs for abc module to 2.6.Georg Brandl2008-06-072-0/+196
|
* #3057: Fix the MutableMapping ABC to use the 2.6 dict interface.Georg Brandl2008-06-071-9/+14
|
* Register IterableUserDict as a MutableMapping.Georg Brandl2008-06-071-0/+4
|
* Revert unwanted changes.Georg Brandl2008-06-073-101/+95
|
* Factor out docstring dedenting from inspect.getdoc() into inspect.cleandoc()Georg Brandl2008-06-077-100/+125
| | | | to ease standalone use of the algorithm.
* Finished bug #2451. Fixed the retrying part to make itFacundo Batista2008-06-071-8/+16
| | | | more robust.
* Remove locking part of new buffer protocol.Travis E. Oliphant2008-06-063-22/+0
|
* Add long double check support to configure test.Travis E. Oliphant2008-06-061-0/+11
|
* Issue 3501: Make heapq support both __le__ and __lt__.Raymond Hettinger2008-06-061-11/+28
|
* Fix build issue on OSX 10.4Ronald Oussoren2008-06-066-8/+80
|