summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #10184: Touch directories only once when extracting a tarfile.Martin v. Löwis2010-11-011-2/+5
|
* Issue #10199: Moved Demo/turtle under Lib/Alexander Belopolsky2010-11-011-9/+16
|
* Issue #7061: Simplified a section title.Alexander Belopolsky2010-11-011-2/+2
|
* Issue #9886: Add a key-function entry to the glossary.Raymond Hettinger2010-10-311-0/+20
|
* Issue 7402: Improve reduce() example in the python idioms how-to.Raymond Hettinger2010-10-311-18/+16
|
* Issue 7447: Improve docs for sum().Raymond Hettinger2010-10-311-3/+6
|
* Issue #10160: Speed up operator.attrgetter. Patch by Christos Georgiou.Antoine Pitrou2010-10-311-0/+2
|
* Added style argument to logging.basicConfig() and documented this change.Vinay Sajip2010-10-311-0/+10
|
* Issue #5729: json.dumps to support using '\t' as an indent stringRaymond Hettinger2010-10-311-4/+6
|
* Issues #7061, #10225: Fixed doctests in turtle manualAlexander Belopolsky2010-10-311-24/+21
|
* Fix test_mailbox by supporting context manager protocol for get_file() returns.Georg Brandl2010-10-301-3/+7
|
* Issue 7061: Explained 'gon'Alexander Belopolsky2010-10-291-1/+5
|
* Add read support for all missing variants of the GNU sparseLars Gustäbel2010-10-291-1/+2
| | | | | | | | extensions. Thus, in addition to GNUTYPE_SPARSE headers, sparse information in pax headers created by GNU tar can now be decoded. All three formats 0.0, 0.1 and 1.0 are supported. On filesystems that support this, holes in files are now restored whenever a sparse member is extracted.
* (?:...) is a non-capturing, but still grouping construct.Georg Brandl2010-10-291-1/+1
|
* Fix markup error and update false positive entries from "make suspicious".Georg Brandl2010-10-292-7/+7
|
* Port suspicious markup builder and patchlevel.py so that they can be used ↵Georg Brandl2010-10-292-17/+37
| | | | with Python 2 and 3 without conversion.
* Re-add "debugger" label, it is used in pydoc-topics.Georg Brandl2010-10-291-0/+2
|
* send_bytes obviously needs bytes...Georg Brandl2010-10-291-2/+2
|
* What's New in Python 3.2: update Unicode sectionVictor Stinner2010-10-291-10/+21
|
* Review new Barrier docs.Georg Brandl2010-10-281-42/+40
|
* issue 8777Kristján Valur Jónsson2010-10-281-0/+104
| | | | Add threading.Barrier
* #10218: return timeout status from Condition.wait, mirroring other ↵Georg Brandl2010-10-281-0/+6
| | | | primitives' behavior.
* #7351: add more consistent exception name alias.Georg Brandl2010-10-281-1/+9
|
* #5975: add unix_dialect to csv module.Georg Brandl2010-10-271-0/+9
|
* Issue #7061: Dropped "for Tk" from turtle module title and moved itsAlexander Belopolsky2010-10-277-14/+10
| | | | | doc section under frameworks. Also fixed a couple of markup issues that affected TOC rendering.
* #10200: typo.Georg Brandl2010-10-261-1/+1
|
* #10200: typo.Georg Brandl2010-10-261-1/+1
|
* Markup fix.Georg Brandl2010-10-261-1/+1
|
* logging: Added style option to Formatter to allow %, {} or himBHformatting.Vinay Sajip2010-10-251-7/+19
|
* Add documentation about the default warnings filters.Georg Brandl2010-10-241-3/+21
|
* Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ↵Georg Brandl2010-10-243-11/+22
| | | | | | | | is silent by default, except when configured --with-pydebug. Emit this warning from the GC shutdown procedure, rather than just printing to stderr.
* Fix style.Georg Brandl2010-10-242-3/+4
|
* Issue 5178: Add tempfile.TemporaryDirectory (original patch by Neil Schemenauer)Nick Coghlan2010-10-242-1/+59
|
* #1349106: add linesep argument to generator.flatten and header.encode.R. David Murray2010-10-232-12/+81
|
* #6518: enable context manager protocol for ossaudiodev types.Georg Brandl2010-10-231-0/+9
|
* Revert r85797 (and r85798): it broke the Windows buildbots because ofAntoine Pitrou2010-10-221-2/+1
| | | | test_multiprocessing's misbehaviour.
* Update what's newAntoine Pitrou2010-10-221-1/+2
|
* Issue #5639: Add a *server_hostname* argument to `SSLContext.wrap_socket`Antoine Pitrou2010-10-223-1/+32
| | | | | | in order to support the TLS SNI extension. `HTTPSConnection` and `urlopen()` also use this argument, so that HTTPS virtual hosts are now supported.
* Fixed a typoAlexander Belopolsky2010-10-211-1/+1
|
* Issue #7061: Fixed section titleAlexander Belopolsky2010-10-211-1/+1
|
* Issue #10089: Add support for arbitrary -X options on the command-line.Antoine Pitrou2010-10-214-5/+55
| | | | They can be retrieved through a new attribute `sys._xoptions`.
* logging: Improved StreamHandler documentation.Vinay Sajip2010-10-201-11/+13
|
* logging: clarified Filter documentation.Vinay Sajip2010-10-201-6/+10
|
* Correct signature of BytesGenerator in docs.R. David Murray2010-10-191-1/+1
|
* logging: Documented usage of callables as filters.Vinay Sajip2010-10-191-6/+15
|
* Issue #7061: Fixed some of the issues in turtle module documentationAlexander Belopolsky2010-10-191-11/+13
| | | | reported by Terry J. Reedy.
* Be consistent in the spelling of thread-safe(ty).Georg Brandl2010-10-195-7/+7
|
* #10092: Properly reset locale in Locale*Calendar classes. The context ↵Georg Brandl2010-10-191-3/+9
| | | | manager was buggy because setlocale() returns the *new* locale, not the old. Also add a test for this.
* Tighten up 'byte string' wording in base64 docs.R. David Murray2010-10-171-20/+22
|
* #1343: Add short_empty_elements option to XMLGenerator.R. David Murray2010-10-171-1/+7
| | | | Patch and tests by Neil Muller.