summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #8004: add a serve target to the Doc Makefile.Dirkjan Ochtman2010-02-241-0/+4
|
* Issue #7733: add explicit reference in asyncore docs.Dirkjan Ochtman2010-02-241-1/+2
|
* #8000: fix deprecated directive. What a shame to lose that glorious issue ↵Georg Brandl2010-02-231-1/+1
| | | | number to such a minor bug :)
* Fix #1537721: add writeheader() method to csv.DictWriter.Dirkjan Ochtman2010-02-231-0/+10
| | | | Reviewed by skip.montanaro and thomas.wouters.
* fixup markup errorJack Diederich2010-02-231-1/+1
|
* added a note on shutil new APIsTarek Ziadé2010-02-231-1/+4
|
* added make_archive (and secondary APIs) to shutilTarek Ziadé2010-02-231-3/+98
|
* Remove Tools/modulator, a reference to it in the docs, and a screenshot of it.Andrew M. Kuchling2010-02-221-6/+1
| | | | | | (I asked the BDFL first, and he approved removing it. The last actual bugfix to Tools/modulator was in 2001; since then all changes have been search-and-replace: string methods, whitespace fixes, etc.)
* fixes issue #7530, serve_forever()Jack Diederich2010-02-221-5/+1
|
* Clarify description of three-argument pow for Decimal types: the exponent ↵Mark Dickinson2010-02-221-3/+6
| | | | of the result is always 0.
* #6414: clarify description of processor endianness.Andrew M. Kuchling2010-02-221-3/+5
| | | | Text by Alexey Shamrin; I changed 'DEC Alpha' to the more relevant 'Intel Itanium'.
* #7794: describe 2.6 support for executing directories and zip archivesAndrew M. Kuchling2010-02-221-0/+7
|
* #7076: mention SystemRandom class near start of the module docs; reword ↵Andrew M. Kuchling2010-02-221-1/+5
| | | | change description for clarity. Noted by Shawn Ligocki.
* Re-wordAndrew M. Kuchling2010-02-221-3/+3
|
* Issue #5211: Fix complex type to avoid implicit calls toMark Dickinson2010-02-211-4/+6
| | | | complex.__coerce__. Thanks Meador Inge for the patch.
* logging: Documented warnings module integration.Vinay Sajip2010-02-191-0/+22
|
* #7967: PyXML is no more.Georg Brandl2010-02-191-7/+0
|
* - apply patch from issue 7005Fred Drake2010-02-191-4/+46
| | | | - add corresponding documentation
* Issue #7633: Context method in the decimal module (with the exceptionMark Dickinson2010-02-181-2/+5
| | | | | | of the 'canonical' and 'is_canonical' methods) now consistently accept integer arguments wherever a Decimal instance is accepted. Thanks Juan José Conti for the patch.
* Add various itemsAndrew M. Kuchling2010-02-181-6/+47
|
* Make the references to Popen in the description of CallR. David Murray2010-02-161-2/+2
| | | | and check_call into links.
* Remove incorrect apostrophe.Eric Smith2010-02-151-1/+1
|
* #7926: fix-up wording.Georg Brandl2010-02-141-1/+2
|
* #7926: fix stray parens.Georg Brandl2010-02-141-5/+6
|
* #7921: fix links. Patch by Brian Curtin.Ezio Melotti2010-02-141-6/+7
|
* #7907: fix wrong function name in doc. Patch by Brian Curtin.Ezio Melotti2010-02-111-1/+1
|
* Issue 5754: tweak shelve doc wording to make it clearer that even whenR. David Murray2010-02-111-8/+9
| | | | | | | writeback=True values are written to the backing store when assigned to the shelf. Add test to confirm that this happens. Doc patch and added test by Robert Lehmann. I also fixed the cross references to the sync and close methods.
* Issue 7893 and Issue 7588Michael Foord2010-02-101-9/+19
|
* Doc fix for unittest.Michael Foord2010-02-081-2/+3
|
* Make assertMultiLineEqual the default for comparing unicode strings.Michael Foord2010-02-081-4/+10
|
* Fix typoEzio Melotti2010-02-081-1/+1
|
* Clarify and correct description for ccbench and iobench.Antoine Pitrou2010-02-081-3/+4
|
* Add two items; move a subsectionAndrew M. Kuchling2010-02-081-8/+21
|
* Move distutils into its own subsection; add various itemsAndrew M. Kuchling2010-02-081-46/+113
|
* Issue 6003: ZipFile.writestr "compression_type" argumentRonald Oussoren2010-02-071-1/+8
|
* Rename "exc_value" attribute on assertRaises context manager to "exception".Georg Brandl2010-02-071-2/+2
|
* A number of APIs in macostools cannot work in 64-bit mode because theyRonald Oussoren2010-02-071-0/+15
| | | | | | | | | | | use Carbon APIs that aren't available there. This patch disables tests for the affected entrypoints in macostools and mentions this in the documentation. In theory it is possible to replace the implementation by code that does work in 64-bit mode, but that would require further updates to the Carbon wrappers because the modern APIs aren't wrapped properly.
* #5341: fix "builtin" where used as an adjective ("built-in" is correct).Georg Brandl2010-02-066-27/+30
|
* Review sysconfig docs.Georg Brandl2010-02-061-80/+80
|
* #7864: make deprecation notices a bit clearer.Georg Brandl2010-02-061-7/+7
|
* Minor doc change.Michael Foord2010-02-051-1/+1
|
* Adding versionadded to test skipping section of unittest documentation.Michael Foord2010-02-051-3/+2
|
* Example of using assertRaises as a context manager in the unittest ↵Michael Foord2010-02-051-2/+8
| | | | documentation.
* Closes issue 7030.Michael Foord2010-02-051-1/+5
|
* Resolve bug 7847 by including documentation for -J, -U, and -X under "OptionsBarry Warsaw2010-02-051-5/+23
| | | | you shouldn't use".
* Issue #7851: logging: clarification on logging configuration files.Vinay Sajip2010-02-041-0/+7
|
* Use correct assert* methods in the examples.Ezio Melotti2010-02-041-10/+10
|
* Issue 6760: Clarify args handling for subprocess.Popen. Patch by Chris RebertNick Coghlan2010-02-041-6/+31
|
* Corrected list of attributes exposed by sys.getwindowsversion.Eric Smith2010-02-031-4/+4
|
* Explicitly mention the default value for formatdate's usegmt parameter.R. David Murray2010-02-031-1/+1
|