summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* specify how things are copiedBenjamin Peterson2008-12-092-2/+2
|
* Issue 4597: Fix several cases in EvalFrameEx where an exception could beJeffrey Yasskin2008-12-082-3/+28
| | | | "raised" without setting x, err, or why to let the eval loop know.
* Consider micro version for name of CHM file.Martin v. Löwis2008-12-081-0/+2
|
* Add UUIDs for 2.6.1 and 2.6.2.Martin v. Löwis2008-12-081-0/+3
|
* #4457: rewrite __import__() documentation.Georg Brandl2008-12-071-38/+54
|
* Add link to the favicon to the docs.Georg Brandl2008-12-071-1/+7
|
* muffed the default caseSkip Montanaro2008-12-071-3/+2
|
* Issue #4509: bugs in bytearray with exports (buffer protocol)Antoine Pitrou2008-12-063-11/+66
|
* issue 4483 - dbm build failures on systems with gdbm_compat lib.Skip Montanaro2008-12-063-2/+20
|
* Follow-up to #4488: document PIPE and STDOUT properly.Georg Brandl2008-12-061-18/+33
|
* Issue #4445: save 3 bytes (on average, on a typical machine) perMark Dickinson2008-12-053-15/+28
| | | | string allocation.
* Remove confusing sentence part.Georg Brandl2008-12-051-1/+1
|
* Followup to #4511: add link from decorator glossary entry to definition.Georg Brandl2008-12-051-0/+3
|
* Issue #4461: Safety check in parsenumber (ast.c)Mark Dickinson2008-12-051-0/+1
|
* be more specific, and parallel to the py3k branchFred Drake2008-12-051-2/+2
|
* bump version numberFred Drake2008-12-051-1/+1
|
* Move __import__ to the bottom of the functions list.Georg Brandl2008-12-051-61/+61
| | | | | It doesn't make sense for such a fundamental document to have the most obscure function listed at the top.
* #3171: document that *slice are removed in 3k.Georg Brandl2008-12-051-0/+13
|
* #4478: document that copyfile() can raise Error.Georg Brandl2008-12-051-1/+2
|
* #4517: add "special method" glossary entry and clarify when __getattribute__ ↵Georg Brandl2008-12-052-1/+7
| | | | is bypassed.
* #4529: fix parser's validation for try-except-finally statements.Georg Brandl2008-12-053-23/+36
|
* #4544: add `dedent` to textwrap.__all__.Georg Brandl2008-12-051-1/+1
|
* #4441 followup: Add link to open() docs for Windows.Georg Brandl2008-12-051-2/+2
|
* #4458: recognize "-" as an argument, not a malformed option in gnu_getopt().Georg Brandl2008-12-053-1/+9
|
* Use markup.Georg Brandl2008-12-051-2/+2
|
* Add an index entry for "subclassing immutable types".Georg Brandl2008-12-051-1/+2
|
* #4441: improve doc for os.open() flags.Georg Brandl2008-12-051-12/+10
|
* #4409: fix asterisks looking like footnotes.Georg Brandl2008-12-051-6/+6
|
* #4408: document regex.groups.Georg Brandl2008-12-051-0/+5
|
* rename the new check_call_output to check_output. its less ugly.Gregory P. Smith2008-12-054-26/+26
|
* Clarification to avoid confusing output with file descriptors.Georg Brandl2008-12-041-1/+1
|
* Took Nick Coghlan's advice about importing warnings globally in logging, to ↵Vinay Sajip2008-12-042-8/+6
| | | | avoid the possibility of race conditions: "This could deadlock if a thread spawned as a side effect of importing a module happens to trigger a warning. warnings is pulled into sys.modules as part of the interpreter startup - having a global 'import warnings' shouldn't have any real effect on logging's import time."
* Adds a subprocess.check_call_output() function to return the output from aGregory P. Smith2008-12-044-12/+121
| | | | process on success or raise an exception on error.
* Add another heapq example.Georg Brandl2008-12-041-0/+15
|
* Add reference to enumerate() to indices example.Georg Brandl2008-12-041-2/+5
|
* Issue #1055234: cgi.parse_header(): Fixed parsing of header parameters toFred Drake2008-12-043-3/+45
| | | | | support unusual filenames (such as those containing semi-colons) in Content-Disposition headers.
* Bumped up 2.6 to 2.7Christian Heimes2008-12-047-146/+146
|
* Issue #4384: Added logging integration with warnings module using ↵Vinay Sajip2008-12-034-5/+108
| | | | captureWarnings(). This change includes a NullHandler which does nothing; it will be of use to library developers who want to avoid the "No handlers could be found for logger XXX" message which can appear if the library user doesn't configure logging.
* Backport r67478Raymond Hettinger2008-12-033-8/+14
|
* Speed up Python (according to pybench and 2to3-on-itself) by 1-2% by cachingJeffrey Yasskin2008-12-031-1/+10
| | | | | whether any thread has tracing turned on, which saves one load instruction in the fast_next_opcode path in PyEval_EvalFrameEx(). See issue 4477.
* Issue #4025 againChristian Heimes2008-12-031-1/+1
| | | | Converted a C99 style comment to a C89 style comment (found by MAL).
* let people using SVN Sphinx still build the docsBenjamin Peterson2008-12-011-1/+5
|
* typo in commentSkip Montanaro2008-12-011-1/+1
|
* fix pyspecific extensions that were broken by Sphinx's grand renamingBenjamin Peterson2008-11-301-1/+1
|
* w# requires Py_ssize_tChristian Heimes2008-11-301-1/+1
|
* Issue #4365: Add crtassem.h constants to the msvcrt module.Martin v. Löwis2008-11-302-0/+26
|
* note the version that worksBenjamin Peterson2008-11-301-1/+1
|
* Issue #4389: Add icon to the uninstall entry inMartin v. Löwis2008-11-302-1/+6
| | | | "add-and-remove-programs".
* StringIO.close() stops you from using the buffer, tooBenjamin Peterson2008-11-301-1/+2
|
* Fix a small typo in docstringAmaury Forgeot d'Arc2008-11-291-1/+1
|