Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #970783: document PyObject_Generic[GS]etAttr. | Georg Brandl | 2009-03-31 | 1 | -0/+21 |
| | |||||
* | #992207: document that the parser only accepts \\n newlines. | Georg Brandl | 2009-03-31 | 1 | -1/+6 |
| | |||||
* | The unittest.TestCase.assertEqual() now displays the differences in lists, | Gregory P. Smith | 2009-03-31 | 1 | -21/+205 |
| | | | | | | | | | | tuples, dicts and sets on failure. Many new handy type and comparison specific assert* methods have been added that fail with error messages actually useful for debugging. Contributed in by Google and completed with help from mfoord and GvR at PyCon 2009 sprints. Discussion lives in http://bugs.python.org/issue2578. | ||||
* | #5417: replace references to undocumented functions by ones to documented ↵ | Georg Brandl | 2009-03-31 | 1 | -12/+13 |
| | | | | functions. | ||||
* | #1386675: specify WindowsError as the exception, because it has a winerror ↵ | Georg Brandl | 2009-03-31 | 1 | -9/+8 |
| | | | | attribute that EnvironmentError doesnt have. | ||||
* | #5529: backport new docs of import semantics written by Brett to 2.x. | Georg Brandl | 2009-03-31 | 3 | -52/+177 |
| | |||||
* | #5581: fget argument of abstractproperty is optional as well. | Georg Brandl | 2009-03-31 | 1 | -1/+2 |
| | |||||
* | #5566: fix versionadded from PyLong ssize_t functions. | Georg Brandl | 2009-03-31 | 1 | -3/+3 |
| | |||||
* | #5519: remove reference to Kodos, which seems dead. | Georg Brandl | 2009-03-31 | 1 | -7/+1 |
| | |||||
* | Add various items | Andrew M. Kuchling | 2009-03-31 | 1 | -9/+55 |
| | |||||
* | Add more items | Andrew M. Kuchling | 2009-03-30 | 1 | -4/+46 |
| | |||||
* | typo fix | Andrew M. Kuchling | 2009-03-30 | 1 | -1/+1 |
| | |||||
* | #5039: make it clear that the impl. note refers to CPython. | Georg Brandl | 2009-03-30 | 1 | -2/+3 |
| | |||||
* | A fix for issue 1974, inspired by the patch from Andi Albrecht (aalbrecht), | Barry Warsaw | 2009-03-30 | 1 | -1/+2 |
| | | | | | | though with some changes by me. This patch should not be back ported or forward ported. It's a bit too risky for 2.6 and 3.x does things fairly differently. | ||||
* | Many edits | Andrew M. Kuchling | 2009-03-30 | 1 | -75/+74 |
| | |||||
* | Add several items and placeholders | Andrew M. Kuchling | 2009-03-30 | 1 | -42/+90 |
| | |||||
* | Remove comment | Andrew M. Kuchling | 2009-03-30 | 1 | -2/+0 |
| | |||||
* | Typo fixes | Andrew M. Kuchling | 2009-03-30 | 1 | -2/+2 |
| | |||||
* | #5199: make warning about vars() assignment more visible. | Georg Brandl | 2009-03-30 | 1 | -2/+6 |
| | |||||
* | Fix for issue 13095 | Ronald Oussoren | 2009-03-30 | 1 | -1/+1 |
| | |||||
* | Fix for issue 896199 (some Carbon modules aren't present in the documentation) | Ronald Oussoren | 2009-03-30 | 1 | -0/+262 |
| | |||||
* | there's actually three methods here #5600 | Benjamin Peterson | 2009-03-30 | 1 | -2/+2 |
| | |||||
* | use the awesome new status iterator | Benjamin Peterson | 2009-03-29 | 1 | -1/+3 |
| | |||||
* | Issue #532631: Replace confusing fabs(x)/1e25 >= 1e25 test | Mark Dickinson | 2009-03-29 | 1 | -1/+1 |
| | | | | with fabs(x) >= 1e50, and fix documentation. | ||||
* | fix consistency | Benjamin Peterson | 2009-03-29 | 1 | -2/+2 |
| | |||||
* | stop the versionchanged directive from hiding the docs | Benjamin Peterson | 2009-03-29 | 1 | -5/+7 |
| | |||||
* | a more realistic example | Benjamin Peterson | 2009-03-29 | 1 | -1/+15 |
| | |||||
* | Add section numbering to some of the larger subdocuments. | Georg Brandl | 2009-03-28 | 7 | -0/+7 |
| | |||||
* | Switch to fixed Sphinx version. | Georg Brandl | 2009-03-28 | 1 | -1/+1 |
| | |||||
* | Fix a typo and be more specific | Antoine Pitrou | 2009-03-28 | 1 | -3/+7 |
| | |||||
* | give os.symlink and os.link() better parameter names #5564 | Benjamin Peterson | 2009-03-28 | 2 | -4/+7 |
| | |||||
* | #5324: document __subclasses__(). | Georg Brandl | 2009-03-28 | 1 | -0/+11 |
| | |||||
* | Publicize the GC untracking optimization | Antoine Pitrou | 2009-03-28 | 1 | -0/+8 |
| | |||||
* | rename TestCase.skip() to skipTest() because it causes annoying problems ↵ | Benjamin Peterson | 2009-03-26 | 1 | -1/+1 |
| | | | | with trial #5571 | ||||
* | clarify the type of data returned | Skip Montanaro | 2009-03-25 | 1 | -2/+2 |
| | |||||
* | Add links to related resources. | Raymond Hettinger | 2009-03-24 | 1 | -0/+6 |
| | |||||
* | forgot to document that setUp can be skipped (silly me...) | Benjamin Peterson | 2009-03-23 | 1 | -2/+5 |
| | |||||
* | refactor unittest docs | Benjamin Peterson | 2009-03-23 | 1 | -389/+413 |
| | |||||
* | comply with the evilJavaNamingScheme for attribute names | Benjamin Peterson | 2009-03-23 | 1 | -2/+2 |
| | | | | It seems my love of PEP 8 overrode the need for consistentcy | ||||
* | implement test skipping and expected failures | Benjamin Peterson | 2009-03-23 | 1 | -5/+128 |
| | | | | patch by myself #1034053 | ||||
* | Issue #4688: Add a heuristic so that tuples and dicts containing only | Antoine Pitrou | 2009-03-23 | 1 | -0/+25 |
| | | | | | | | | | untrackable objects are not tracked by the garbage collector. This can reduce the size of collections and therefore the garbage collection overhead on long-running programs, depending on their particular use of datatypes. (trivia: this makes the "binary_trees" benchmark from the Computer Language Shootout 40% faster) | ||||
* | Add MutableSet example. | Raymond Hettinger | 2009-03-20 | 1 | -1/+6 |
| | |||||
* | Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. | Mark Dickinson | 2009-03-20 | 2 | -0/+43 |
| | | | | Backport of r70459. | ||||
* | * Add clearer comment to initialization code. | Raymond Hettinger | 2009-03-19 | 1 | -2/+10 |
| | | | | | | * Add optional argument to popitem() -- modeled after Anthon van der Neut's C version. * Fix method markup in docs. | ||||
* | Issue 5381: Add object_pairs_hook to the json module. | Raymond Hettinger | 2009-03-19 | 1 | -3/+25 |
| | |||||
* | a much better example | Benjamin Peterson | 2009-03-18 | 1 | -18/+7 |
| | |||||
* | I thought this was begging for an example | Benjamin Peterson | 2009-03-17 | 1 | -0/+19 |
| | |||||
* | Add token markup. | Georg Brandl | 2009-03-16 | 1 | -1/+1 |
| | |||||
* | Fix markup in re docs and give a mail address in regex howto, so that | Georg Brandl | 2009-03-15 | 2 | -2/+2 |
| | | | | the recommendation to send suggestions to the author can be followed. | ||||
* | #5469: add with statement to list of name-binding constructs. | Georg Brandl | 2009-03-15 | 1 | -3/+4 |
| |