summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Typo fixAndrew M. Kuchling2008-04-301-4/+4
|
* Update command line usage documentation to reflect 2.6 changes (also ↵Nick Coghlan2008-04-301-27/+62
| | | | includes some minor cleanups). Addresses TODO list issue 2258
* Issue 2526, float.__format__ 'n' specifier does not support thousands grouping.Eric Smith2008-04-302-129/+240
| | | | | Implemented grouping, with tests. Cleaned up PyOS_ascii_formatd by breaking reformatting into smaller functions.
* Add Rodrigo and Heiko.Martin v. Löwis2008-04-291-0/+6
|
* Strip down SSL docs; I'm not managing to get test programs working, so I'll ↵Andrew M. Kuchling2008-04-291-8/+3
| | | | just give a minimal description
* test_sundry performs minimal tests (a simple import...) on modules that are ↵Amaury Forgeot d'Arc2008-04-281-25/+0
| | | | | | | not tested otherwise. Some of them now have tests and can be removed. Only 70 to go...
* Fix markup.Georg Brandl2008-04-281-1/+1
|
* Rename the test_traceback_print() function to traceback_print() to preventBrett Cannon2008-04-282-5/+5
| | | | test_capi from automatically calling the function.
* Get rid of _test(), _main(), _debug() and _check(). Tests are no longerSkip Montanaro2008-04-281-93/+12
| | | | | | needed (better set available in Lib/test/test_robotparser.py). Clean up a few PEP 8 nits (compound statements on a single line, whitespace around operators).
* Wrap some long lines.Skip Montanaro2008-04-281-9/+12
|
* Fix a bug introduced by the warnings rewrite where tracebacks were beingBrett Cannon2008-04-283-4/+47
| | | | | | improperly indented. Closes issue #2699.
* Correct documentation to match implementation: "Class" instead ofSkip Montanaro2008-04-281-45/+46
| | | | | | "class_descriptor", "Function" instead of "function_descriptor". Note default path value for readmodule*. Wrap some long paragraphs. Don't mention 'inpackage' which isn't part of the public API.
* Minor cleanups:Skip Montanaro2008-04-281-35/+37
| | | | | | | | * Avoid creating unused local variables where we can. Where we can't prefix the unused variables with '_'. * Avoid shadowing builtins where it won't change the external interface of a function. * Use None as default path arg to readmodule and readmodule_ex.
* Wrap some long paragraphs and include the default values for optionalSkip Montanaro2008-04-271-88/+96
| | | | function parameters.
* A few small changes:Skip Montanaro2008-04-271-10/+5
| | | | | | | * The only exception we should catch when trying to import cStringIO is an ImportError. * Delete the function signatures embedded in the mk*temp docstrings. * The tempdir global variable was initialized twice.
* Autocompletion of filenames now support alternate separators, e.g. theKurt B. Kaiser2008-04-272-3/+10
| | | | '/' char on Windows. Patch 2061 Tal Einat.
* Improved AutoCompleteWindow logic. Patch 2062 Tal Einat.Kurt B. Kaiser2008-04-272-7/+14
|
* Home / Control-A toggles between left margin and end of leading whiteKurt B. Kaiser2008-04-273-11/+48
| | | | | | | | space. Patch 1196903 Jeff Shute. M idlelib/PyShell.py M idlelib/EditorWindow.py M idlelib/NEWS.txt
* minor wording changes, rewrap a few linesSkip Montanaro2008-04-271-12/+13
|
* Add OpenSearch and a Python logo to the HTML output.Georg Brandl2008-04-274-0/+25
|
* A little reformating of Py3k warningsBenjamin Peterson2008-04-2711-35/+33
|
* #2700 Document PyNumber_ToBaseBenjamin Peterson2008-04-271-0/+11
|
* Use correct XHTML tags.Georg Brandl2008-04-271-16/+16
|
* #2677: add note that not all functions may accept keyword args.Georg Brandl2008-04-271-0/+8
|
* Use PyErr_WarnPy3k throughoutBenjamin Peterson2008-04-2714-88/+47
|
* Added PyErr_WarnPy3k function. (issue 2671) I will be converting current ↵Benjamin Peterson2008-04-274-0/+21
| | | | Py3k warnings to the use of this function soon.
* Fixed URL of PEP 205 in weakref's module docstring.Alexandre Vassalotti2008-04-271-1/+1
|
* Add missing return type to dealloc.Georg Brandl2008-04-261-1/+2
|
* #2691: document PyLong (s)size_t APIs, patch by Alexander Belopolsky.Georg Brandl2008-04-261-1/+31
|
* #2668: nit in apply() docs.Georg Brandl2008-04-261-1/+1
|
* Allow test_import to work when it is invoked directlyBenjamin Peterson2008-04-251-0/+2
|
* Issue 2635: fix bug in the fix_sentence_endings option to textwrap.fill.Mark Dickinson2008-04-253-0/+9
|
* Issue #1496032. Add -mieee to BASECFLAGS on alpha, when gcc isMark Dickinson2008-04-253-1/+33
| | | | | | | | the compiler. This should(?) help to fix failures in test_math and test_cmath on Linux/alpha. Also add configure message reporting the result of uname -m, as a debugging aid.
* Add from_buffer and from_buffer_copy class methods to ctypes types.Thomas Heller2008-04-254-0/+221
|
* A new crasher.Armin Rigo2008-04-251-0/+31
|
* Fix typo (now -> no)Neal Norwitz2008-04-251-1/+1
|
* reformat some documentation of classes so methods and attributes are under ↵Benjamin Peterson2008-04-2542-3573/+3701
| | | | the class directive
* Use absolute import for test packageAmaury Forgeot d'Arc2008-04-241-1/+1
|
* Add a few tests for pydoc.Amaury Forgeot d'Arc2008-04-242-1/+33
| | | | | | | This is a modified version of a patch proposed by Humberto Diogenes in the discussion of issue1883. I will merge manually this change into the py3k branch: the tests must be adapted.
* Disable gc when running test_trace, or we may record the __del__ of ↵Amaury Forgeot d'Arc2008-04-241-0/+12
| | | | | | | collected objects. See http://mail.python.org/pipermail/python-checkins/2008-April/068633.html the extra events perfectly match several calls to socket._fileobject.__del__()
* Remove cyclic reference in CFuncPtr instances; see issue #2682.Thomas Heller2008-04-244-50/+136
| | | | Backport candidate for the release25-maint branch.
* Issue2681: the literal 0o8 was wrongly accepted, and evaluated as float(0.0).Amaury Forgeot d'Arc2008-04-243-2/+5
| | | | | This happened only when 8 is the first digit. Credits go to Lukas Meuser.
* Add Jesus Cea.Martin v. Löwis2008-04-241-0/+3
|
* Fix typo.Martin v. Löwis2008-04-241-1/+1
|
* Remove Py_Refcnt, Py_Type, Py_Size, as they were added onlyMartin v. Löwis2008-04-241-5/+0
| | | | for backwards compatibility, yet 2.5 did not have them at all.
* Add Guilherme Polo.Martin v. Löwis2008-04-241-0/+3
|
* #2673 Fix example typo in optparse docsBenjamin Peterson2008-04-231-1/+1
|
* syntax fixupGregory P. Smith2008-04-231-3/+3
|
* Factor in documentation changes from issue 1753732.Skip Montanaro2008-04-221-0/+13
|
* Issue #2670: urllib2.build_opener() failed when two handlersAmaury Forgeot d'Arc2008-04-223-3/+12
| | | | | | derive the same default base class. Will backport.