summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Sync with Optik docs (rev 518):Greg Ward2006-06-101-5/+210
| | | | | * restore "Extending optparse" section * document ALWAYS_TYPED_ACTIONS (SF #1449311)
* Add some wsgiref textAndrew M. Kuchling2006-06-091-1/+36
|
* Describe startswith()/endswiith() change; add reminder about wsgirefAndrew M. Kuchling2006-06-091-0/+17
|
* RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as ↵Georg Brandl2006-06-091-2/+8
| | | | first argument.
* Import wsgiref into the stdlib, as of the external version 0.1-r2181.Phillip J. Eby2006-06-092-0/+780
|
* Markup fixAndrew M. Kuchling2006-06-091-1/+1
|
* Update functools sectionAndrew M. Kuchling2006-06-091-10/+36
|
* Add functools.update_wrapper() and functools.wraps() as described in PEP 356Nick Coghlan2006-06-081-0/+46
|
* Typo fixAndrew M. Kuchling2006-06-081-1/+1
|
* Clarify documentation for bf_getcharbuffer.Brett Cannon2006-06-071-6/+10
|
* Mention other placeholdersAndrew M. Kuchling2006-06-071-2/+3
|
* Add an item; also, escape %Andrew M. Kuchling2006-06-071-1/+6
|
* Mention other placeholdersAndrew M. Kuchling2006-06-071-2/+3
|
* Add an SQLite introduction, taken from the 'What's New' textAndrew M. Kuchling2006-06-071-0/+98
|
* On python-dev Thomas Heller said these were committedTim Peters2006-06-062-916/+108
| | | | | by mistake in rev 46693, so reverting this part of rev 46693.
* Specify argtypes for all test functions. Maybe that helps on strange ;-) ↵Thomas Heller2006-06-062-108/+916
| | | | architectures
* [Bug #1470026] Include link to list of classifiersAndrew M. Kuchling2006-06-051-1/+1
|
* Remove use of Trove name, which isn't very helpful to usersAndrew M. Kuchling2006-06-051-2/+2
|
* Remove doctest.testmod's deprecated (in 2.4) `isprivate`Tim Peters2006-06-051-10/+5
| | | | argument. A lot of hair went into supporting that!
* Mention second encoding speedupAndrew M. Kuchling2006-06-051-5/+6
|
* Revert revisions:Tim Peters2006-06-042-38/+0
| | | | | | | | | | | | | | | | 46640 Patch #1454481: Make thread stack size runtime tunable. 46647 Markup fix The first is causing many buildbots to fail test runs, and there are multiple causes with seemingly no immediate prospects for repairing them. See python-dev discussion. Note that a branch can (and should) be created for resolving these problems, like svn copy svn+ssh://svn.python.org/python/trunk -r46640 svn+ssh://svn.python.org/python/branches/NEW_BRANCH followed by merging rev 46647 to the new branch.
* Markup fixGeorge Yoshida2006-06-042-6/+6
|
* Remove a redundant wordGeorge Yoshida2006-06-041-1/+0
|
* Drop Mac wrappers for the WASTE library.Ronald Oussoren2006-06-041-11/+0
|
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-042-0/+38
|
* Minor rewordingAndrew M. Kuchling2006-06-031-7/+7
|
* [Bug #1441864] Clarify description of 'data' argumentAndrew M. Kuchling2006-06-031-5/+7
|
* [Bug #1475554] Strengthen text to say 'must' instead of 'should'Andrew M. Kuchling2006-06-031-2/+2
|
* [Bug #1472084] Fix description of do_tagAndrew M. Kuchling2006-06-031-2/+3
|
* pprint functions used to sort a dict (by key) if and only ifTim Peters2006-06-021-0/+4
| | | | | | | | | | | the output required more than one line. "Small" dicts got displayed in seemingly random order (the hash-induced order produced by dict.__repr__). None of this was documented. Now pprint functions always sort dicts by key, and the docs promise it. This was proposed and agreed to during the PyCon 2006 core sprint -- I just didn't have time for it before now.
* Mention SimpleXMLRPCServer changeAndrew M. Kuchling2006-05-311-0/+15
|
* [Bug #1473048]Andrew M. Kuchling2006-05-311-0/+9
| | | | | | | | | | | | | | | | SimpleXMLRPCServer and DocXMLRPCServer don't look at the path of the HTTP request at all; you can POST or GET from / or /RPC2 or /blahblahblah with the same results. Security scanners that look for /cgi-bin/phf will therefore report lots of vulnerabilities. Fix: add a .rpc_paths attribute to the SimpleXMLRPCServer class, and report a 404 error if the path isn't on the allowed list. Possibly-controversial aspect of this change: the default makes only '/' and '/RPC2' legal. Maybe this will break people's applications (though I doubt it). We could just set the default to an empty tuple, which would exactly match the current behaviour.
* 'functional' module was renamed to 'functools'Andrew M. Kuchling2006-05-311-6/+6
|
* Clarify wording on default values for strptime(); defaults are used when betterBrett Cannon2006-05-311-1/+2
| | | | | | values cannot be inferred. Closes bug #1496315.
* Patches #1497027 and #972322: try HTTP digest auth first,Georg Brandl2006-05-291-3/+1
| | | | and watch out for handler name collisions.
* Apply modified version of Collin Winter's patch #1478788Nick Coghlan2006-05-293-6/+7
| | | | | | Renames functional extension module to _functools and adds a Python functools module so that utility functions like update_wrapper can be added easily.
* Patch #1080727: add "encoding" parameter to doctest.DocFileSuiteGeorge Yoshida2006-05-281-2/+15
| | | | Contributed by Bjorn Tillenius.
* fix typoGeorge Yoshida2006-05-271-1/+1
|
* End of Ch.3 is now about "with statement".George Yoshida2006-05-271-3/+3
| | | | Avoid obsolescence by directly referring to the section.
* minor markup nitsGeorge Yoshida2006-05-272-4/+5
|
* credit where credit is dueRichard Jones2006-05-271-2/+2
|
* Mention new-style exceptionsAndrew M. Kuchling2006-05-271-0/+6
|
* Conversion of exceptions over from faked-up classes to new-style C types.Richard Jones2006-05-271-1/+1
|
* Add Py_LOCAL macrosAndrew M. Kuchling2006-05-271-0/+12
|
* Patch 1494554: Update numeric properties to Unicode 4.1.Martin v. Löwis2006-05-271-1/+1
|
* Patch #1492218: document None being a constant.Georg Brandl2006-05-261-7/+9
|
* Write more docs.Thomas Heller2006-05-261-17/+175
|
* Exception isn't the root of all exception classes anymore.Georg Brandl2006-05-261-2/+3
|
* Add rpartition() and path cachingAndrew M. Kuchling2006-05-261-3/+18
|
* needspeed: rpartition documentation, tests, and a bug fixes.Fredrik Lundh2006-05-261-0/+9
| | | | feel free to add more tests and improve the documentation.