summaryrefslogtreecommitdiffstats
path: root/Doc/lib
Commit message (Collapse)AuthorAgeFilesLines
* Small fixes, mostly in the markup.Thomas Heller2006-06-221-7/+7
|
* Fix typos.Thomas Heller2006-06-181-28/+27
| | | | | | | | Fix doctest example. Mention in the tutorial that 'errcheck' is explained in the ref manual. Use better wording in some places. Remoce code examples that shouldn't be in the tutorial. Remove some XXX notices.
* Update url.George Yoshida2006-06-172-11/+11
| | | | Old url returned status code:301 Moved permanently.
* SF patch 1504676: Make sgmllib char and entity references pluggableFred Drake2006-06-161-11/+43
| | | | (implementation/tests contributed by Sam Ruby)
* minor documentation cleanup. mention the bsddb.db interface explicitly by name.Gregory P. Smith2006-06-151-8/+14
|
* Patch #1446489 (zipfile: support for ZIP64)Ronald Oussoren2006-06-151-8/+16
|
* Document paramflags.Thomas Heller2006-06-141-21/+129
|
* Write more docs.Thomas Heller2006-06-141-32/+143
|
* SequenceMatcher.get_matching_blocks(): This now guarantees thatTim Peters2006-06-141-0/+10
| | | | | | | | | | | adjacent triples in the result list describe non-adjacent matching blocks. That's _nice_ to have, and Guido said he wanted it. Not a bugfix candidate: Guido or not ;-), this changes visible endcase semantics (note that some tests had to change), and nothing about this was documented before. Since it was working as designed, and behavior was consistent with the docs, it wasn't "a bug".
* Updated documentation for pysqlite 2.3.0 API.Gerhard Häring2006-06-131-3/+38
|
* More docs for ctypes.Thomas Heller2006-06-131-43/+177
|
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-132-0/+40
| | | | | | | | | | Heavily revised, comprising revisions: 46640 - original trunk revision (backed out in r46655) 46647 - markup fix (backed out in r46655) 46692:46918 merged from branch aimacintyre-sf1454481 branch tested on buildbots (Windows buildbots had problems not related to these changes).
* The site module documentation also described the Windows behaviour incorrectly.Nick Coghlan2006-06-121-6/+7
|
* SF #1366250: optparse docs: fix inconsistency in variable name; minor tweaks.Greg Ward2006-06-111-7/+7
|
* Add versionadded to docNeal Norwitz2006-06-111-0/+2
|
* Bug #1361643: fix textwrap.dedent() so it handles tabs appropriately,Greg Ward2006-06-111-5/+10
| | | | | i.e. do *not* expand tabs, but treat them as whitespace that is not equivalent to spaces. Add a couple of test cases. Clarify docs.
* New docs for ctypes.Thomas Heller2006-06-103-565/+925
|
* Sync with Optik docs (rev 518):Greg Ward2006-06-101-5/+210
| | | | | * restore "Extending optparse" section * document ALWAYS_TYPED_ACTIONS (SF #1449311)
* 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
|
* 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
|
* 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
* Remove doctest.testmod's deprecated (in 2.4) `isprivate`Tim Peters2006-06-051-10/+5
| | | | argument. A lot of hair went into supporting that!
* 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
|
* 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.
* [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.
* 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-292-6/+6
| | | | | | 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.
* Write more docs.Thomas Heller2006-05-261-17/+175
|
* needspeed: rpartition documentation, tests, and a bug fixes.Fredrik Lundh2006-05-261-0/+9
| | | | feel free to add more tests and improve the documentation.
* Reordered, and wrote more docs.Thomas Heller2006-05-261-74/+127
|
* Write some docs.Thomas Heller2006-05-261-0/+40
|
* For now, I gave up with automatic conversion of reST to Python-latex,Thomas Heller2006-05-262-0/+207
| | | | | | so I'm writing this in latex now. Skeleton for the ctypes reference.
* Typo fixesAndrew M. Kuchling2006-05-261-1/+1
|
* Clarify docs for str.partition().Georg Brandl2006-05-261-4/+5
|
* needforspeed: partition implementation, part two.Fredrik Lundh2006-05-261-0/+8
| | | | feel free to improve the documentation and the docstrings.
* Bug #1490688: properly document %e, %f, %g format subtleties.Georg Brandl2006-05-181-11/+30
|
* Bug #1462152: file() now checks more thoroughly for invalid modeGeorg Brandl2006-05-181-1/+7
| | | | | strings and removes a possible "U" before passing the mode to the C library function.