summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* #11363: add missing functions from curses doc. Patch by Sandro Tosi.Ezio Melotti2011-06-261-0/+48
|
* #11363: clean up curses doc.Ezio Melotti2011-06-261-87/+87
|
* #11669: rephrase footnote in the Compound Statements page.Ezio Melotti2011-06-261-2/+3
|
* Fix Issue10020 - Doc update to sqlite3 module in 2.7 branch.Senthil Kumaran2011-06-261-0/+12
|
* Use correct markup in zipimport.rst. Patch by Sara Magliacane.Ezio Melotti2011-06-251-3/+3
|
* Issue 12086: add example showing how to use name mangling.Raymond Hettinger2011-06-251-0/+22
|
* Issue 11889: Clarify docs for enumerate.Raymond Hettinger2011-06-251-8/+7
|
* Issue #12228: Fix exchanged flag descriptions in stat.rst. Thanks Sandro Tosi.Mark Dickinson2011-06-251-2/+2
|
* #9921: clarify os.path.join joining algorithmR David Murray2011-06-241-4/+5
| | | | | The new wording is based on the comments in the code, which match the actual behavior.
* #12389: fix missing space at sentence end.R David Murray2011-06-231-1/+1
|
* merge 3.2 - Fix closes Issue12359 - Removing a confusing sentence from the ↵Senthil Kumaran2011-06-201-7/+7
| | | | previous change.
* Fix issue12359. Minor doc update on import module description.Senthil Kumaran2011-06-201-7/+8
|
* #6771: fix docs: curses.wrapper is exposed as a function, not a moduleR David Murray2011-06-181-34/+13
| | | | Patch by July Tikhonov.
* update link to pycrypto (closes #12351)Benjamin Peterson2011-06-161-1/+1
|
* Closes #12206: documentation update for LogRecord constructor and ↵Vinay Sajip2011-06-131-0/+10
| | | | Formatter.formatTime.
* Issue #12223: Typo fix in datamodel docsEli Bendersky2011-06-101-1/+1
|
* Fix a few misuses of :option: I missed in r86521.Éric Araujo2011-06-093-5/+5
| | | | | | | | | | Extract of the commit message: Fix usage of :option: in the docs (#9312). :option: is used to create a link to an option of python, not to mark up any instance of any arbitrary command-line option. These were changed to ````.
* Add examples that work on Windows to distutils docs (#1626300)Éric Araujo2011-06-072-8/+17
|
* Remove outdated bit of advice (c882b5ff92d9 follow-up)Éric Araujo2011-06-041-5/+6
|
* Document working dir for “make html” (#12249). Patch by Tshepang ↵Éric Araujo2011-06-031-0/+1
| | | | Lekhonkhobe.
* Fix named tuples to work with vars().Raymond Hettinger2011-06-031-1/+3
|
* Cleanup exampleRaymond Hettinger2011-06-011-5/+4
|
* Multiple clean-ups to the docs for builtin functions.Raymond Hettinger2011-06-011-28/+34
| | | | | | | | | | | | | | | * Use concrete example for dir() and eliminate the distracting doctest directives. * Add a pure python equivalent for enumerate() * Modify the enumerate() example to demonstrate the start argument * Remove incorrect reference the *iterable* in the enumerate() docs. * Downgrade the comments on input() from a warning to a note. * Fix the iter() example to use the empty string as the terminating condition for file.readline(). Also, the old example was broken because readline() results include a newline, so 'STOP\n' would have been the correct terminating condition. Even with that fix, the STOP example was fragile and would have lead to infinite loops with malformed inputs. * Do not refer to classmethod as being "more advanced" than staticmethod.
* Link to suggestions for how to use super().Raymond Hettinger2011-06-011-0/+4
|
* Fix markup: arguments in a class directive are __init__ arguments, not base ↵Éric Araujo2011-05-311-1/+1
| | | | classes
* Re-add missing doc stub for the distutils check commandÉric Araujo2011-05-281-0/+14
|
* Backport doc improvements for distutils.cmd.Command (#9223).Éric Araujo2011-05-281-76/+80
| | | | Original commit by Georg Brandl.
* Fix two typosÉric Araujo2011-05-251-2/+2
|
* Issue 12003: fixing error in xrange alternative sampleEli Bendersky2011-05-231-1/+1
|
* Issue 12126: removing incorrect claim about return value of selectEli Bendersky2011-05-221-2/+1
|
* Simplify exampleRaymond Hettinger2011-05-211-4/+0
|
* this should actually be an IOErrorBenjamin Peterson2011-05-201-1/+1
|
* add example for not using accessBenjamin Peterson2011-05-201-1/+20
|
* #12072: add missing parenthesis in the doc. Patch by Sandro Tosi.Ezio Melotti2011-05-201-1/+1
|
* #12092: backport rephrasing of a paragraph in the tutorial.Ezio Melotti2011-05-171-4/+3
|
* #12093: fix typo in struct doc. Patch by Sandro Tosi.Ezio Melotti2011-05-171-1/+1
|
* Port #6498 fix: fix several misspellings of "SystemExit" as "SystemError".Georg Brandl2011-05-151-5/+5
|
* #11979: improve wording and markup in sockets howto. Patch by Xavier Morel.Ezio Melotti2011-05-141-16/+17
|
* #12061: remove duplicate glossary entry.Georg Brandl2011-05-121-20/+0
|
* Issue #8498: In socket.accept(), allow to specify 0 as a backlog value inAntoine Pitrou2011-05-101-2/+2
| | | | order to accept exactly one connection. Patch by Daniel Evers.
* Issue 12047: Expand the style guide.Raymond Hettinger2011-05-101-0/+104
|
* (Merge 3.1) 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!
* Add a note to the str.find doc to suggest the use of the "in" operator.Ezio Melotti2011-05-091-0/+9
|
* #11997: fix typo in init.rst.Ezio Melotti2011-05-051-1/+1
|
* Fix #11834. Correct site-packages paths.Brian Curtin2011-05-041-1/+1
| | | | Patch by Bryce Verdier.
* #11985: document the return value of platform.python_implementation for PyPy.Ezio Melotti2011-05-031-1/+1
|
* (Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS XVictor Stinner2011-05-031-0/+4
| | | | | to get around a mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso.
* Branch mergeÉric Araujo2011-05-021-4/+21
|\
| * Fix wordingÉric Araujo2011-05-011-2/+2
| |
| * Advertise nesting directives for class/method and class/data combos.Éric Araujo2011-04-161-4/+21
| | | | | | | | Also fix a typo and a misleading example (method used to describe function).