summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* pprint usage example rethought.Łukasz Langa2011-05-141-30/+99
|
* Issue #12012: ssl.PROTOCOL_SSLv2 becomes optionalVictor Stinner2011-05-091-0/+3
| | | | | | | OpenSSL is now compiled with OPENSSL_NO_SSL2 defined (without the SSLv2 protocol) on Debian: fix the ssl module on Debian Testing and Debian Sid. Optimize also ssl.get_protocol_name(): speed does matter!
* Stop trying to use _xmlplus in the xml module. Closes #11164.Martin v. Löwis2011-05-093-15/+3
| | | | Patch by Arfrever Frehtes Taifersar Arahesis.
* Add a note to the str.find doc to suggest the use of the "in" operator.Ezio Melotti2011-05-091-0/+9
|
* #11985: document the return value of platform.python_implementation for PyPy.Ezio Melotti2011-05-031-1/+1
|
* Add missing colonÉric Araujo2011-05-021-1/+1
|
* Fix spelling.Raymond Hettinger2011-05-021-1/+1
|
* Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around aVictor Stinner2011-05-011-0/+4
| | | | mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso.
* note abcs of int and float (closes #11977)Benjamin Peterson2011-05-011-3/+7
|
* #11901: post-commit review fixes per Georg BrandlR David Murray2011-04-301-7/+7
|
* whitespace...Brian Curtin2011-04-301-3/+3
|
* Fix #11961. Document STARTUPINFO and creation flag options.Brian Curtin2011-04-301-3/+98
|
* #11952: Fix typo in multiprocessing doc.Ezio Melotti2011-04-291-1/+1
|
* Branch mergeÉric Araujo2011-04-275-7/+7
|\
| * Change markup so it generates a linkÉric Araujo2011-04-272-3/+3
| |
| * Change markup so that it creates a linkÉric Araujo2011-04-251-1/+1
| |
| * Branch mergeÉric Araujo2011-04-242-3/+3
| |\
| | * Add a space to make json doc a bit more readableÉric Araujo2011-04-211-1/+1
| | |
| | * Fix argument name in reST doc to match the codeÉric Araujo2011-04-201-2/+2
| | |
* | | #11901: add description of how bitfields are laid out to hexversion docsR David Murray2011-04-251-0/+23
|/ / | | | | | | Patch by Sijin Joseph.
* | Fix wrong number of functions noticed by Sandro Tosi.Ezio Melotti2011-04-191-1/+1
|/
* Small wording fix.Georg Brandl2011-04-161-3/+4
|
* Issue #11855: Apply missing formatting for urlretrieveEli Bendersky2011-04-161-5/+5
|
* Add another example to the collections module docs.Raymond Hettinger2011-04-161-0/+20
|
* #4783: document that is not possible to use json.dump twice on the same stream.Ezio Melotti2011-04-151-0/+5
|
* Issue #11827: remove mention of list2cmdline in the doc of subprocessEli Bendersky2011-04-151-6/+37
|
* #9101: backport json reference in configparser doc.Ezio Melotti2011-04-141-0/+10
|
* Fix wording and clarify that the IDNA codec operates on full domain names.R David Murray2011-04-131-2/+8
| | | | | Before reading the code to check, I wasn't sure if it operated on full domain names or just individual labels.
* #10019: Fix regression relative to 2.6: add newlines if indent=0R David Murray2011-04-131-3/+3
| | | | Patch by Amaury Forgeot d'Arc, updated by Sando Tosi.
* Fix typo noticed by Sandro Tosi.Ezio Melotti2011-04-031-1/+1
|
* Merge issue 11662.Guido van Rossum2011-03-291-0/+4
|\
| * Issue 11662: Fix vulnerability in urllib/urllib2.guido@google.com2011-03-291-0/+4
| | | | | | | | (This version is a cleaned-up backport of a fix by Senthil Kumaran.)
* | #10617: add class directives to collections ABCs.Ezio Melotti2011-03-281-8/+50
| |
* | Tweaks to sys.flags description table.Éric Araujo2011-03-251-25/+15
| | | | | | | | | | | | The options listed in the table are now links to their documentation, and the table uses compact markup to make it easier to read and edit. First proposed in #10998.
* | Use universal construct os.path.expanduser('~') instead of os.environ['HOME']Éric Araujo2011-03-252-2/+2
|/
* Issue #10610: Document that int(), float(), and complex() accept numeric ↵Raymond Hettinger2011-03-231-40/+46
| | | | literals with the Nd property.
* Issue #11625: Fix TypoRaymond Hettinger2011-03-221-1/+2
|
* Fix duplicate word.Georg Brandl2011-03-211-1/+1
|
* Fix typo in class nameÉric Araujo2011-03-201-1/+1
|
* Markup fixes for #7198 patch.R David Murray2011-03-201-3/+3
|
* #7198: really add newline='' to csv.writer docs.R David Murray2011-03-201-10/+11
| | | | | | Changeset ab27f16f707a was messed up by a rebase (as were 959f666470cc and 9d1b1a95bc8f) and the patch only got applied to default.
* Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really createsAntoine Pitrou2011-03-191-1/+1
| | | | unbuffered pipes, such that select() works properly on them.
* #11216: document all possible set_charset execution paths.R David Murray2011-03-151-9/+16
|
* #11555: update doc for 3.x change to as_string mangle_from default.R David Murray2011-03-151-3/+4
|
* Remove redundant __contains__ entry from Message docs.R David Murray2011-03-151-6/+0
|
* Issue #10885: Fix multiprocessing docs typoRoss Lagerwall2011-03-141-1/+1
|
* Fix typo.Ezio Melotti2011-03-121-1/+1
|
* trunc -> math.trunc (closes #11475)Benjamin Peterson2011-03-121-1/+1
|
* Fix issue11283 - Clarifying a re pattern in the re module docs for ↵Senthil Kumaran2011-03-121-5/+6
| | | | conditional regex
* Issue #11426: use 'with' statements on open files in CSV examplesEli Bendersky2011-03-111-20/+26
|