summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
...
* Applied patch #1816: sys.flags patchChristian Heimes2008-01-141-0/+38
|
* Clarify the effect of text mode.Georg Brandl2008-01-131-1/+3
|
* Fix editing glitch.Georg Brandl2008-01-121-5/+2
|
* Move OSError docs to exceptions doc, remove obsolete descriptionsGeorg Brandl2008-01-123-65/+44
| | | | from os docs, rework posix docs.
* Issue 1780: Allow leading and trailing whitespace in Decimal constructor,Mark Dickinson2008-01-121-3/+11
| | | | | when constructing from a string. Disallow trailing newlines in Context.create_decimal.
* Update the opcode docs for STORE_MAP and BUILD_MAPRaymond Hettinger2008-01-111-3/+7
|
* Bug #1790: update link; remove outdated paragraphAndrew M. Kuchling2008-01-111-9/+3
|
* Documentation for r5990[3567].Georg Brandl2008-01-114-3/+29
|
* Run doctests on the collections moduleRaymond Hettinger2008-01-111-1/+1
|
* Neaten-up the named tuple docsRaymond Hettinger2008-01-101-7/+7
|
* Closing issue1761.Amaury Forgeot d'Arc2008-01-101-1/+3
| | | | | | | | | | | | Surprising behaviour of the "$" regexp: it matches the end of the string, AND just before the newline at the end of the string:: re.sub('$', '#', 'foo\n') == 'foo#\n#' Python is consistent with Perl and the pcre library, so we just document it. Guido prefers "\Z" to match only the end of the string.
* Clarify how to add a field to a named tuple.Raymond Hettinger2008-01-101-1/+1
|
* Examples for named tuple subclassing should include __slots__Raymond Hettinger2008-01-101-3/+4
|
* Fix typoRaymond Hettinger2008-01-091-1/+1
|
* Syntax highlighting only works when >>> lines are accompanied by ... linesRaymond Hettinger2008-01-091-8/+8
|
* Fix markup errors from r59857 and clarify key.__enter__/__exit__ docsGeorg Brandl2008-01-081-11/+16
|
* Added __enter__ and __exit__ functions to HKEY objectChristian Heimes2008-01-081-0/+18
| | | | Added ExpandEnvironmentStrings to the _winreg module.
* Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objectsAndrew M. Kuchling2008-01-081-2/+6
|
* Docs on named tuple's naming conventions and limits of subclassingRaymond Hettinger2008-01-081-1/+7
|
* Documentation nits.Raymond Hettinger2008-01-071-5/+5
|
* Use get() instead of pop() for the optimized version of _replace().Raymond Hettinger2008-01-071-1/+1
|
* Minor markup fixRaymond Hettinger2008-01-071-1/+1
|
* Cleanup named tuple subclassing example.Raymond Hettinger2008-01-071-10/+12
|
* Added section about adding contextual information to log output.Vinay Sajip2008-01-071-0/+46
|
* Fix two further doc build warnings.Georg Brandl2008-01-071-1/+2
|
* #467924, patch by Alan McIntyre: Add ZipFile.extract and ZipFile.extractall.Georg Brandl2008-01-071-0/+28
|
* Restructure urllib doc structure.Georg Brandl2008-01-071-73/+65
|
* Patch #602345 by Neal Norwitz and me: add -B option and ↵Georg Brandl2008-01-071-0/+11
| | | | PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode.
* Restore "somenamedtuple" as the "class" for named tuple attrs.Georg Brandl2008-01-071-11/+7
|
* Added a hyperlink from sequence types to mutable sequence types.Mark Summerfield2008-01-071-1/+1
|
* Issue #1646: Make socket support TIPC. The socket module now has supportChristian Heimes2008-01-071-0/+27
| | | | | for TIPC under Linux, see http://tipc.sf.net/ for more information. Thanks to Alberto Bertogli for the patch
* Updated docs for basicConfig to indicate it's a no-op if handlers have been ↵Vinay Sajip2008-01-071-11/+12
| | | | defined for the root logger.
* Clean up markup.Georg Brandl2008-01-071-7/+5
|
* Consistency nit.Georg Brandl2008-01-071-5/+5
|
* Change virtual class name of __iter__ to "object" in order to make it linkable.Georg Brandl2008-01-071-1/+1
|
* Add another named tuple subclassing example.Raymond Hettinger2008-01-071-0/+8
|
* Cleanup subclassing example to more clearly show fixed-width print format.Raymond Hettinger2008-01-071-5/+5
|
* Add subclassing example to docs for named tuples.Raymond Hettinger2008-01-071-6/+13
|
* Remove latex trace.Georg Brandl2008-01-061-1/+1
|
* Fix introductory sentence.Georg Brandl2008-01-061-1/+1
|
* #1325: Add docs and tests for zipimporter.archive and zipimporter.prefix.Georg Brandl2008-01-061-18/+29
|
* #1499: Document compile() exceptions.Georg Brandl2008-01-061-0/+3
|
* #1582: document __reversed__, patch by Mark Russell.Georg Brandl2008-01-061-3/+7
|
* #1559684: document that shutil.copy* doesn't copy all metadata on Posix and ↵Georg Brandl2008-01-061-8/+13
| | | | Windows too.
* #1686390: add example for csv.Sniffer use.Georg Brandl2008-01-061-2/+9
|
* #1727024: document that Popen.returncode is set by Popen.poll/wait.Georg Brandl2008-01-061-10/+15
|
* #1615275: clarify return object types of different tempfile factories.Georg Brandl2008-01-061-1/+12
|
* #759525: document that dir() doesn't return metaclass attrs when given a ↵Georg Brandl2008-01-062-1/+7
| | | | class as arg.
* #1501: document that 0**0 == 1.Georg Brandl2008-01-061-2/+6
|
* #1755097: document default values for [].sort() and sorted().Georg Brandl2008-01-062-4/+6
|