Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #13237: Make the subprocess convenience helper documentation ↵ | Nick Coghlan | 2011-10-27 | 1 | -10/+42 |
| | | | | self-contained aside from the shared parameter description. Downgrade the pipe warnings at that level to notes (since those pipes are hidden, people are unlikely to even try it) | ||||
* | Issue #13237: fix typo | Nick Coghlan | 2011-10-26 | 1 | -1/+1 |
| | |||||
* | Issue #13237: remove some details that only apply to the 3.x version of this ↵ | Nick Coghlan | 2011-10-26 | 1 | -14/+8 |
| | | | | module and cross reference the relocated warning about the dangers of invoking the shell with untrusted input | ||||
* | Issue #13237: further updates to subprocess documentation | Nick Coghlan | 2011-10-26 | 1 | -57/+97 |
| | |||||
* | Refactor a bit the codecs doc. | Ezio Melotti | 2011-10-25 | 1 | -19/+21 |
| | |||||
* | merge heads | Benjamin Peterson | 2011-10-24 | 2 | -116/+187 |
|\ | |||||
| * | Issue #13237: Rearrange subprocess module documentation to emphasise the ↵ | Nick Coghlan | 2011-10-24 | 1 | -95/+160 |
| | | | | | | | | convenience functions and commonly needed arguments | ||||
| * | Issue #13141: Demonstrate recommended style for SocketServer examples. | Florent Xicluna | 2011-10-23 | 1 | -21/+27 |
| | | |||||
* | | note callable is back in 3.2 | Benjamin Peterson | 2011-10-24 | 1 | -1/+3 |
|/ | |||||
* | Note that the #1548891 fix indirectly fixes shlex (#6988, #1170) | Éric Araujo | 2011-10-23 | 1 | -3/+1 |
| | |||||
* | Issue #1548891: The cStringIO.StringIO() constructor now encodes unicode | Antoine Pitrou | 2011-10-22 | 1 | -4/+1 |
| | | | | | arguments with the system default encoding just like the write() method does, instead of converting it to a raw buffer. | ||||
* | #13233: fix typo. | Ezio Melotti | 2011-10-20 | 1 | -1/+1 |
| | |||||
* | #13219: clarify section about character sets in the re documentation. | Ezio Melotti | 2011-10-20 | 1 | -24/+30 |
| | |||||
* | Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelated | Senthil Kumaran | 2011-10-19 | 1 | -1/+5 |
| | | | | | exceptions, when a document with timestamp earlier than 1980 is provided to zipfile. Patch contributed by Petri Lehtinen. | ||||
* | Remove duplication. | Ezio Melotti | 2011-10-19 | 11 | -12/+12 |
| | |||||
* | #12277: add missing comma. | Ezio Melotti | 2011-10-18 | 1 | -1/+1 |
| | |||||
* | #13138: add missing versionadded. Patch by Andreas Stührk. | Ezio Melotti | 2011-10-09 | 1 | -0/+2 |
| | |||||
* | Clean-up and improve the priority queue example in the heapq docs. | Raymond Hettinger | 2011-10-09 | 1 | -25/+25 |
| | |||||
* | Fix a typo and a broken link (part of #10536). | Éric Araujo | 2011-10-08 | 1 | -3/+3 |
| | | | | Found by Franz Glasner in #2504. | ||||
* | Issue #12823: remove broken link and replace it with another resource. | Antoine Pitrou | 2011-10-07 | 1 | -2/+2 |
| | |||||
* | Branch merge | Éric Araujo | 2011-10-06 | 1 | -18/+18 |
|\ | |||||
| * | Fix markup used in the documentation of sys.prefix and sys.exec_prefix. | Éric Araujo | 2011-10-05 | 1 | -7/+7 |
| | | | | | | | | | | | | | | | | | | - Using the file role with {placeholders} is IMO clearer than fake Python code. - The fact that sys.version[:3] gives '2.7' is a CPython detail and should not be advertised (see #9442), even if some stdlib modules currently rely on that detail. | ||||
| * | Move doc of sys.dont_write_bytecode to make all attributes sorted again | Éric Araujo | 2011-10-05 | 1 | -11/+11 |
| | | |||||
* | | Issue13073 - Address review comments and add versionchanged information in ↵ | Senthil Kumaran | 2011-10-05 | 1 | -5/+8 |
|/ | | | | the docs. | ||||
* | update 2.7 - Document message_body arg in HTTPConnection.endheaders | Senthil Kumaran | 2011-10-02 | 1 | -1/+5 |
| | |||||
* | #13076: fix links to datetime.time. | Ezio Melotti | 2011-10-02 | 1 | -9/+9 |
| | |||||
* | Fix bug in heapq priority queue example. | Georg Brandl | 2011-09-18 | 1 | -1/+1 |
| | |||||
* | Add info from the docstring for random.gammavariate() to the docs. | Georg Brandl | 2011-09-17 | 1 | -0/+7 |
| | |||||
* | Update sys.platform doc for #12326. | Victor Stinner | 2011-09-05 | 1 | -18/+28 |
| | | | | Backport from Python 3.2 (e11b4c945f7e). | ||||
* | merge from 3.2. Fix closes Issue11155 - Correct the ↵ | Senthil Kumaran | 2011-09-05 | 1 | -4/+4 |
| | | | | multiprocessing.Queue.put's arg (replace 'item' with 'obj') in the docs. Patch by Westley Martínez. | ||||
* | #12781: Mention SO_REUSEADDR flag near socket examples | Sandro Tosi | 2011-09-02 | 1 | -0/+19 |
| | |||||
* | Branch merge | Éric Araujo | 2011-09-02 | 5 | -9/+11 |
|\ | |||||
| * | Document that format string don’t support arbitrary dictonary keys. | Éric Araujo | 2011-09-01 | 1 | -0/+2 |
| | | | | | | | | | | Text adapted from the PEP. Addition requested by Terry J. Reedy on 2011-02-23 on python-dev. | ||||
| * | Fix some markup and one typo | Éric Araujo | 2011-09-01 | 1 | -1/+1 |
| | | |||||
| * | Avoid using the default reST role. Makes Doc/tools/rstlint.py happy. | Éric Araujo | 2011-09-01 | 3 | -8/+8 |
| | | |||||
* | | From RFC 3629 5- and 6-bytes UTF-8 sequences are invalid, so remove them ↵ | Ezio Melotti | 2011-09-01 | 1 | -7/+2 |
|/ | | | | from the doc. | ||||
* | added versionadd information for pkgutil.get_data(); thanks to Kyle Monson ↵ | Sandro Tosi | 2011-08-30 | 1 | -0/+2 |
| | | | | from docs@ | ||||
* | Remove outdated pointer to optparse (fixes #11360). | Éric Araujo | 2011-08-26 | 1 | -3/+0 |
| | | | | The doc already points to argparse. | ||||
* | Issue #12213: make it clear that BufferedRWPair shouldn't be called with the | Antoine Pitrou | 2011-08-20 | 1 | -19/+23 |
| | | | | same object as reader and writer, and deemphasize it in document order. | ||||
* | #12787: link original MultiCall proposal to webarchive and in a footnote | Sandro Tosi | 2011-08-20 | 1 | -2/+9 |
| | |||||
* | fix description of \r; thanks to Thomas Waldmann from docs@ | Sandro Tosi | 2011-08-19 | 1 | -1/+1 |
| | |||||
* | merge heads | Sandro Tosi | 2011-08-19 | 108 | -347/+550 |
|\ | |||||
| * | Link isinstance/issubclass to the ABC glossary entry (#12256) | Éric Araujo | 2011-08-19 | 1 | -3/+6 |
| | | |||||
| * | Fix a typo and remove some unneeded markup | Éric Araujo | 2011-08-19 | 1 | -6/+5 |
| | | |||||
| * | Add documentation for PEP 370 features in distutils (#10745). | Éric Araujo | 2011-08-19 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Apart from adding a section to describe the user scheme, this changeset also does some much needed cleanup: - fixed inverted reST targets - fixed some paths - avoided duplicating the same options listing five or six times - added missing entries for C headers locations - added documentation for --install-lib - fixed a few misuses of the option role (see #9312), but not all (not worth the time, but will do it in packaging docs) - fixed some markup The paths fixes were done with an eye on the source code in the install command, so they really describe what’s actually done. The situation on Mac OS X is rather messy: the fix for #8084 touched site and sysconfig, but distutils does not use these files anymore since the Great Revert. I suspect we have a mismatched stdlib at the moment, and the fix is not even clear (see discussion on #8084). | ||||
| * | Improve documentation for PEP 370 support in site module (#8617). | Éric Araujo | 2011-08-19 | 1 | -39/+85 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | site.USER_BASE and site.USER_SITE are now fully documented. PEP 370 is outdated with respects to the Mac framework situation, but the code in sysconfig and the example in the 3.2 What’s New document helped me find the right values to document for Mac OS X. The command-line interface of the site module is also described in the module docs. The purpose of the usercustomize module is explained in the site docs, with a gentle introduction in the tutorial (right after the section that talks about PYTHONSTARTUP; a comment mentions it should be moved from the tutorial to another file, but that will be another bug). Various markup and wording improvements were made along the way in the site module docs. Duplicate and incomplete declarations of environment variables have also been removed (the original bug report was actually about these entries :). The site module docs are still a bit messy; I’ll see about improving them for #11553. All these sections are copiously interlinked and findable from the doc indexes. | ||||
| * | Add missing documentation for logger argument of shutil.make_archive | Éric Araujo | 2011-08-19 | 1 | -0/+2 |
| | | |||||
| * | Turn last automatic footnote in this file into a manually-numbered one | Éric Araujo | 2011-08-19 | 1 | -2/+2 |
| | | |||||
| * | Branch merge | Éric Araujo | 2011-08-19 | 106 | -297/+448 |
| |\ | |||||
| | * | Backport source links from 3.x. | Éric Araujo | 2011-08-19 | 106 | -237/+391 |
| | | | | | | | | | | | | | | | Existing links have been updated to use the new reST role. In some files, I have also made cosmetic changes to the header. |