summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #14386: Expose the dict_proxy internal type as types.MappingProxyTypeVictor Stinner2012-04-154-10/+73
|
* Issue #10576: Add a progress callback to gcmoduleKristján Valur Jónsson2012-04-151-2/+37
|
* Clarify that one should not use __import__() directly. Also mentionBrett Cannon2012-04-151-3/+5
| | | | PEP 328 in explaining how 'index' works.
* merge with 3.2Sandro Tosi2012-04-141-1/+1
|\
| * fix typo; thanks to Jérôme Mainka from docs@Sandro Tosi2012-04-141-1/+1
| |
* | Merge highlight and spacing fixes in json example with 3.2.Ezio Melotti2012-04-141-4/+4
|\ \ | |/
| * Fix highlight and spacing in json example.Ezio Melotti2012-04-141-4/+4
| |
* | #14535: merge with 3.2.Ezio Melotti2012-04-141-1/+4
|\ \ | |/
| * #14535: fix code highlight in multiprocessing examples. Patch by Tshepang ↵Ezio Melotti2012-04-141-1/+4
| | | | | | | | Lekhonkhobe.
| * 3.2 sidebar: link to 3.3, not 3.1Georg Brandl2012-04-121-1/+1
| |
* | Minor docstring / docs corrections for unittest.mockMichael Foord2012-04-132-5/+5
| |
* | unittest.mock.PropertyMock return value and attributes are now standard ↵Michael Foord2012-04-131-0/+11
| | | | | | | | MagicMocks
* | Issue #1559549: Add 'name' and 'path' attributes to ImportError.Brett Cannon2012-04-131-0/+8
| | | | | | | | | | | | | | | | Currently import does not use these attributes as they are planned for use by importlib (which will be another commit). Thanks to Filip Gruszczyński for the initial patch and Brian Curtin for refining it.
* | Doc: sort time.CLOCK_xxx constantsVictor Stinner2012-04-121-8/+8
| |
* | Merge doc fixes #14553 and #14552.R David Murray2012-04-122-4/+4
|\ \ | |/
| * #14553: fix word order.R David Murray2012-04-121-1/+1
| | | | | | | | Patch by Tshepang Lekhonkhobe.
| * #14552: remove redundant wording in 'test' docs.R David Murray2012-04-121-3/+3
| | | | | | | | Original patch by Tshepang Lekhonkhobe.
* | Improve the threading.Condition docs.Antoine Pitrou2012-04-111-3/+5
|\ \ | |/
| * Improve the threading.Condition docs.Antoine Pitrou2012-04-111-3/+5
| |
* | #14545: merge 3.2Georg Brandl2012-04-111-2/+2
|\ \ | |/
| * Closes #14545: make clearer what was added.Georg Brandl2012-04-111-2/+2
| |
* | MergeAntoine Pitrou2012-04-101-139/+167
|\ \ | |/
| * Small improvements to the threading docs: better publicize support for the ↵Antoine Pitrou2012-04-101-19/+33
| | | | | | | | with statement.
| * Fix some markup in the threading docs.Antoine Pitrou2012-04-101-70/+78
| |
| * Issue #8799: Fix and improve the threading.Condition documentation.Antoine Pitrou2012-04-101-54/+59
| |
* | Merged updates to logging reference and HOWTO from 3.2.Vinay Sajip2012-04-102-2/+31
|\ \ | |/
| * Updated logging reference and HOWTO.Vinay Sajip2012-04-102-2/+31
| |
* | merge - minor .rst fixSenthil Kumaran2012-04-101-1/+1
|\ \ | |/
| * minor .rst fixSenthil Kumaran2012-04-101-1/+1
| |
* | Merged comment correction from 3.2.Vinay Sajip2012-04-091-1/+1
|\ \ | |/
| * Corrected comment in cookbook example script.Vinay Sajip2012-04-091-1/+1
| |
* | _decimal is now 100x faster than the Python version in the pi benchmark.Stefan Krah2012-04-091-2/+2
| |
* | Reflow paragraph (not that it helped much).R David Murray2012-04-091-10/+9
| |
* | #14533: if a test has no test_main, use loadTestsFromModule.R David Murray2012-04-091-15/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This moves us further in the direction of using normal unittest facilities instead of specialized regrtest ones. Any test module that can be correctly run currently using 'python unittest -m test.test_xxx' can now be converted to use normal unittest test loading by simply deleting its test_main, thus no longer requiring manual maintenance of the list of tests to run. (Not all tests can be converted that easily, since test_main sometimes does some additional things (such as reap_children or reap_threads). In those cases the extra code may be moved to setUpModule/tearDownModule methods, or perhaps the same ends can be achieved in a different way, such as moving the decorators to the test classes that need them, etc.) I don't advocate going through and making this change wholesale, but any time a list of tests in test_main would otherwise need to be updated, consideration should instead be given to deleting test_main.
* | Merged logging cookbook update from 3.2.Vinay Sajip2012-04-081-0/+228
|\ \ | |/
| * Added multiprocessing example to logging cookbook.Vinay Sajip2012-04-081-0/+229
| |
* | Determine opensearch URL from current version.Georg Brandl2012-04-071-1/+1
| |
* | Closes #14511: merge with 3.2Georg Brandl2012-04-071-1/+1
|\ \ | |/
| * Closes #14511: fix wrong opensearch link for 3.2 docs.Georg Brandl2012-04-071-1/+1
| |
* | Issue #14310: inter-process socket duplication for windowsKristján Valur Jónsson2012-04-071-0/+25
| |
* | Issue #14502: it's RuntimeError on 3.3Sandro Tosi2012-04-061-1/+1
| |
* | merge 3.2Benjamin Peterson2012-04-061-1/+1
|\ \ | |/
| * Issue #14502: release() and unlocked lock generates a ThreadErrorSandro Tosi2012-04-051-1/+1
| |
* | Issue #14502: merge with 3.2Sandro Tosi2012-04-051-1/+1
| |
* | Replace ThreadError by RuntimeError: the former is now an obsolete alias of ↵Georg Brandl2012-04-052-2/+2
| | | | | | | | the latter.
* | A few tweaks to whatsnew/3.3 (fixes #14362)Éric Araujo2012-04-051-8/+41
| |
* | Merge #14481: fix formatting of example in subprocess docs.R David Murray2012-04-031-1/+1
|\ \ | |/
| * #14481: fix formatting of example in subprocess docs.R David Murray2012-04-031-1/+1
| |
* | Move ChainMap versionadded to be less ambiguous.Georg Brandl2012-04-031-2/+2
| |
* | add XXXBenjamin Peterson2012-04-031-0/+2
| |