summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |
* | Expose clock_settime() as time.clock_settime()Victor Stinner2012-04-021-0/+7
| |
* | Add time.CLOCK_HIGHRES constant, needed on SolarisVictor Stinner2012-04-021-0/+9
| |
* | Fix markup errors found by "make suspicious".Georg Brandl2012-04-012-4/+4
| |
* | Remove parens around link.Georg Brandl2012-04-011-1/+1
| |
* | Issue #14394: Use elaborate phrases that boil down to "one to two ordersStefan Krah2012-04-011-4/+10
| | | | | | | | of magnitude". Provide link to the benchmarks.
* | merge with 3.2Sandro Tosi2012-03-311-1/+1
|\ \ | |/
| * fix typo; thanks to Robert Bardos from docs@Sandro Tosi2012-03-311-1/+1
| |
* | Fix formattingAntoine Pitrou2012-03-311-7/+7
| |
* | Issue #14456: improve documentation of the signal module w.r.t. threads.Antoine Pitrou2012-03-311-42/+65
|\ \ | |/
| * Issue #14456: improve documentation of the signal module w.r.t. threads.Antoine Pitrou2012-03-311-40/+52
| |
* | merge with 3.2Sandro Tosi2012-03-311-1/+1
|\ \ | |/
| * use unittest.skip; thanks to Chang Min Jeon from docs@Sandro Tosi2012-03-311-1/+1
| |
* | merge with 3.2Sandro Tosi2012-03-311-0/+2
|\ \ | |/
| * add 'safari' to webbrowser browsers table; thanks to Jonathan Eunice from docs@Sandro Tosi2012-03-311-0/+2
| |
* | issue #3035: update PendingDeprecationWarning to DeprectionWarning, point ↵Andrew Svetlov2012-03-311-6/+15
| | | | | | | | deprecation in tkinter doc
* | Merge #10423: clarify options vs args in argparse discussion of optparseR David Murray2012-03-301-2/+3
|\ \ | |/ | | | | Patch by Sandro Tosi.
| * #10423: clarify options vs args in argparse discussion of optparseR David Murray2012-03-301-2/+3
| | | | | | | | Patch by Sandro Tosi.
* | Issue #14006: improve the documentation of xml.etree.ElementTreeEli Bendersky2012-03-301-53/+126
| | | | | | | | | | | | | | | | Removed the useless explanation of the Element data structure that started the documentation page. Instead, the documentation now starts with a brief tutorial skimming some of the capabilities of the module. The tutorial can be followed by additional topic-specific sections (such as XPath support), and eventually by a reference that goes over the module's classes and functions, as usual.
* | fix typo in glossaryEli Bendersky2012-03-301-1/+1
| |
* | Added the "provisional package" glossary term from PEP 411Eli Bendersky2012-03-301-0/+14
| |
* | Fix typo in unittest.mock docsMichael Foord2012-03-291-1/+1
| |
* | #14416: conditionally add LOG_AUTHPRIV facility and LOG_ODELAY to syslog.R David Murray2012-03-291-4/+6
| | | | | | | | | | | | | | | | | | Unlike the other facilities, we don't use a fallback for AUTHPRIV if it doesn't exist. Because it is intended for logging sensitive log messages, it is better that a program trying to log such messages fail than that it log them insecurely. Initial patch by Federico Reghenzani.
* | Merge #14416: add missing LOG_SYSLOG facility to syslog docs.R David Murray2012-03-291-1/+2
|\ \ | |/
| * #14416: add missing LOG_SYSLOG facility to syslog docs.R David Murray2012-03-291-1/+2
| |
* | Fix newlines.Georg Brandl2012-03-291-0/+7
| |
* | Update unittest.mock.patch exampleMichael Foord2012-03-281-2/+2
| |
* | Re-order unittest.mock documentation to put magic method support before the ↵Michael Foord2012-03-281-219/+220
| | | | | | | | helpers
* | Adding an example to unittest.mock.patch documentationMichael Foord2012-03-281-0/+9
| |
* | Minor unittest.mock.patch doc / docstring improvementMichael Foord2012-03-281-11/+14
| |
* | Unsplit unittest.mock documentationMichael Foord2012-03-287-1733/+1701
| |
* | Fix doc typo noticed by Amaury Forgeot d'ArcEli Bendersky2012-03-271-1/+1
| |
* | Issue #6488: Explain the XPath support of xml.etree.ElementTree, with codeEli Bendersky2012-03-261-30/+132
| | | | | | | | | | | | samples and a reference. Also fix the other nits mentioned in the issue. This also partially addresses issue #14006.