Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | fix incorrect example | Benjamin Peterson | 2008-12-13 | 1 | -1/+1 | |
| | ||||||
* | Issue #4616: TarFile.utime(): Restore directory times on Windows. | Lars Gustäbel | 2008-12-12 | 3 | -10/+5 | |
| | ||||||
* | Issues #3167, #3682: tests for math.log and math.log10 were failing on | Mark Dickinson | 2008-12-11 | 2 | -3/+58 | |
| | | | | | | Solaris and OpenBSD. Fix this by handling special values and domain errors directly in mathmodule.c, passing only positive nonspecial floats to the system log/log10. | |||||
* | Issue #4084: Fix max, min, max_mag and min_mag Decimal methods to | Facundo Batista | 2008-12-11 | 3 | -16/+37 | |
| | | | | | | give correct results in the case where one argument is a quiet NaN and the other is a finite number that requires rounding. Thanks Mark Dickinson. | |||||
* | #1030250: correctly pass the dry_run option to the mkpath() function. | Amaury Forgeot d'Arc | 2008-12-11 | 2 | -1/+4 | |
| | ||||||
* | #4559: When a context manager's __exit__() method returns an object whose | Amaury Forgeot d'Arc | 2008-12-10 | 3 | -6/+46 | |
| | | | | | | | conversion to bool raises an exception, 'with' loses that exception. Reviewed by Jeffrey Yasskin. Already ported to 2.5, will port to 2.6 and 3.0 | |||||
* | Update Misc/NEWS for r67666. | Jeffrey Yasskin | 2008-12-10 | 1 | -0/+3 | |
| | ||||||
* | Add simple unittests for Request | Jeremy Hylton | 2008-12-09 | 1 | -1/+47 | |
| | ||||||
* | revert unrelated change to installer script | Benjamin Peterson | 2008-12-09 | 1 | -1/+1 | |
| | ||||||
* | specify how things are copied | Benjamin Peterson | 2008-12-09 | 2 | -2/+2 | |
| | ||||||
* | Issue 4597: Fix several cases in EvalFrameEx where an exception could be | Jeffrey Yasskin | 2008-12-08 | 2 | -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öwis | 2008-12-08 | 1 | -0/+2 | |
| | ||||||
* | Add UUIDs for 2.6.1 and 2.6.2. | Martin v. Löwis | 2008-12-08 | 1 | -0/+3 | |
| | ||||||
* | #4457: rewrite __import__() documentation. | Georg Brandl | 2008-12-07 | 1 | -38/+54 | |
| | ||||||
* | Add link to the favicon to the docs. | Georg Brandl | 2008-12-07 | 1 | -1/+7 | |
| | ||||||
* | muffed the default case | Skip Montanaro | 2008-12-07 | 1 | -3/+2 | |
| | ||||||
* | Issue #4509: bugs in bytearray with exports (buffer protocol) | Antoine Pitrou | 2008-12-06 | 3 | -11/+66 | |
| | ||||||
* | issue 4483 - dbm build failures on systems with gdbm_compat lib. | Skip Montanaro | 2008-12-06 | 3 | -2/+20 | |
| | ||||||
* | Follow-up to #4488: document PIPE and STDOUT properly. | Georg Brandl | 2008-12-06 | 1 | -18/+33 | |
| | ||||||
* | Issue #4445: save 3 bytes (on average, on a typical machine) per | Mark Dickinson | 2008-12-05 | 3 | -15/+28 | |
| | | | | string allocation. | |||||
* | Remove confusing sentence part. | Georg Brandl | 2008-12-05 | 1 | -1/+1 | |
| | ||||||
* | Followup to #4511: add link from decorator glossary entry to definition. | Georg Brandl | 2008-12-05 | 1 | -0/+3 | |
| | ||||||
* | Issue #4461: Safety check in parsenumber (ast.c) | Mark Dickinson | 2008-12-05 | 1 | -0/+1 | |
| | ||||||
* | be more specific, and parallel to the py3k branch | Fred Drake | 2008-12-05 | 1 | -2/+2 | |
| | ||||||
* | bump version number | Fred Drake | 2008-12-05 | 1 | -1/+1 | |
| | ||||||
* | Move __import__ to the bottom of the functions list. | Georg Brandl | 2008-12-05 | 1 | -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 Brandl | 2008-12-05 | 1 | -0/+13 | |
| | ||||||
* | #4478: document that copyfile() can raise Error. | Georg Brandl | 2008-12-05 | 1 | -1/+2 | |
| | ||||||
* | #4517: add "special method" glossary entry and clarify when __getattribute__ ↵ | Georg Brandl | 2008-12-05 | 2 | -1/+7 | |
| | | | | is bypassed. | |||||
* | #4529: fix parser's validation for try-except-finally statements. | Georg Brandl | 2008-12-05 | 3 | -23/+36 | |
| | ||||||
* | #4544: add `dedent` to textwrap.__all__. | Georg Brandl | 2008-12-05 | 1 | -1/+1 | |
| | ||||||
* | #4441 followup: Add link to open() docs for Windows. | Georg Brandl | 2008-12-05 | 1 | -2/+2 | |
| | ||||||
* | #4458: recognize "-" as an argument, not a malformed option in gnu_getopt(). | Georg Brandl | 2008-12-05 | 3 | -1/+9 | |
| | ||||||
* | Use markup. | Georg Brandl | 2008-12-05 | 1 | -2/+2 | |
| | ||||||
* | Add an index entry for "subclassing immutable types". | Georg Brandl | 2008-12-05 | 1 | -1/+2 | |
| | ||||||
* | #4441: improve doc for os.open() flags. | Georg Brandl | 2008-12-05 | 1 | -12/+10 | |
| | ||||||
* | #4409: fix asterisks looking like footnotes. | Georg Brandl | 2008-12-05 | 1 | -6/+6 | |
| | ||||||
* | #4408: document regex.groups. | Georg Brandl | 2008-12-05 | 1 | -0/+5 | |
| | ||||||
* | rename the new check_call_output to check_output. its less ugly. | Gregory P. Smith | 2008-12-05 | 4 | -26/+26 | |
| | ||||||
* | Clarification to avoid confusing output with file descriptors. | Georg Brandl | 2008-12-04 | 1 | -1/+1 | |
| | ||||||
* | Took Nick Coghlan's advice about importing warnings globally in logging, to ↵ | Vinay Sajip | 2008-12-04 | 2 | -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 a | Gregory P. Smith | 2008-12-04 | 4 | -12/+121 | |
| | | | | process on success or raise an exception on error. | |||||
* | Add another heapq example. | Georg Brandl | 2008-12-04 | 1 | -0/+15 | |
| | ||||||
* | Add reference to enumerate() to indices example. | Georg Brandl | 2008-12-04 | 1 | -2/+5 | |
| | ||||||
* | Issue #1055234: cgi.parse_header(): Fixed parsing of header parameters to | Fred Drake | 2008-12-04 | 3 | -3/+45 | |
| | | | | | support unusual filenames (such as those containing semi-colons) in Content-Disposition headers. | |||||
* | Bumped up 2.6 to 2.7 | Christian Heimes | 2008-12-04 | 7 | -146/+146 | |
| | ||||||
* | Issue #4384: Added logging integration with warnings module using ↵ | Vinay Sajip | 2008-12-03 | 4 | -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 r67478 | Raymond Hettinger | 2008-12-03 | 3 | -8/+14 | |
| | ||||||
* | Speed up Python (according to pybench and 2to3-on-itself) by 1-2% by caching | Jeffrey Yasskin | 2008-12-03 | 1 | -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 again | Christian Heimes | 2008-12-03 | 1 | -1/+1 | |
| | | | | Converted a C99 style comment to a C89 style comment (found by MAL). |