Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge doc fixes from 3.2 | Éric Araujo | 2011-06-09 | 8 | -19/+33 |
|\ | |||||
| * | Fix a few misuses of :option: I missed in r86521. | Éric Araujo | 2011-06-08 | 3 | -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 links from builtins module docs to built-in functions and constants docs | Éric Araujo | 2011-06-08 | 2 | -1/+5 |
| | | |||||
| * | Add examples that work on Windows to distutils docs (#1626300) | Éric Araujo | 2011-06-07 | 2 | -8/+17 |
| | | |||||
| * | Remove outdated bit of advice (584f9c213a6d follow-up) | Éric Araujo | 2011-06-07 | 1 | -5/+6 |
| | | |||||
* | | Branch merge | Éric Araujo | 2011-06-09 | 2 | -20/+54 |
|\ \ | |||||
| * | | Document how to define extension modules in setup.cfg | Éric Araujo | 2011-06-09 | 2 | -2/+36 |
| | | | |||||
| * | | Fix incorrect nesting of sections in setup.cfg specification | Éric Araujo | 2011-06-09 | 1 | -18/+18 |
| | | | |||||
* | | | Issue #12021: Make mmap's read() method argument optional. Patch by Petri | Charles-François Natali | 2011-06-08 | 1 | -4/+8 |
| | | | | | | | | | | | | Lehtinen. | ||||
* | | | Issue #9205: concurrent.futures.ProcessPoolExecutor now detects killed | Antoine Pitrou | 2011-06-08 | 1 | -0/+19 |
|/ / | | | | | | | | | children and raises BrokenProcessPool in such a situation. Previously it would reliably freeze/deadlock. | ||||
* | | Branch merge: packaging fixes | Éric Araujo | 2011-06-07 | 1 | -3/+3 |
|\ \ | |||||
| * | | Fix documentation of requires-python field in setup.cfg (#11041) | Éric Araujo | 2011-06-06 | 1 | -3/+3 |
| | | | |||||
* | | | Issue #12196: Make os.pipe2() flags argument mandatory. | Charles-François Natali | 2011-06-06 | 1 | -3/+3 |
| | | | |||||
* | | | Issue #12040: Expose a new attribute `sentinel` on instances of | Antoine Pitrou | 2011-06-06 | 1 | -0/+14 |
|/ / | | | | | | | | | :class:`multiprocessing.Process`. Also, fix Process.join() to not use polling anymore, when given a timeout. | ||||
* | | Branch merge | Éric Araujo | 2011-06-06 | 6 | -29/+208 |
|\ \ | |||||
| * | | Rephrase the section about spec versioning | Éric Araujo | 2011-06-06 | 1 | -20/+19 |
| | | | |||||
| * | | Fix a few typos | Éric Araujo | 2011-06-06 | 1 | -3/+3 |
| | | | |||||
| * | | Minor rework of the extensibility and acks sections | Éric Araujo | 2011-06-06 | 1 | -9/+17 |
| | | | |||||
| * | | Move a non-PEP 345 field at the end of the metadata fields list | Éric Araujo | 2011-06-05 | 1 | -4/+7 |
| | | | |||||
| * | | Make example of file inclusion in setupcfg more obvious | Éric Araujo | 2011-06-05 | 1 | -15/+14 |
| | | | |||||
| * | | Rephrase and update intro and syntax sections of setupcfg | Éric Araujo | 2011-06-06 | 1 | -32/+34 |
| | | | |||||
| * | | Change reST targets in setup.cfg spec. | Éric Araujo | 2011-06-05 | 2 | -4/+4 |
| | | | | | | | | | | | | | | | | | | I chose “setupcfg” as prefix instead of “packaging-setupcfg” because the scope of the spec is not limited to packaging: it’s intended as a language-agnostic document for packaging tools developers as well as Python authors. | ||||
| * | | Add a short table of contents to the setup.cfg spec. | Éric Araujo | 2011-06-05 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | I tried shortening the sidebar ToC with the tocdepth option instead, but it has a bug which caused all headings with a level deeper than the tocdepth value to all have the same section number, which was a usability regression rather than in improvement. | ||||
| * | | Merge ABC and distutils touch-ups from 3.2. | Éric Araujo | 2011-06-04 | 4 | -16/+16 |
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | | I have removed the reST target I added in 38cdca2cc253: it is not necessary, as people can link to the glossary entry or the abc module without it. Two indentation fixes from 3.2 collections.rst have been ported to 3.3 collections.abc.rst. | ||||
| | * | Improve glossary entry for ABCs. | Éric Araujo | 2011-06-04 | 4 | -13/+16 |
| | | | | | | | | | | | | | | | | | | | | | - Rename reST target name for collections ABCs to avoid collisions - Add link to importlib ABCs (collections, numbers and io ABCs were already linked) - Link to glossary entry from numbers module doc (other modules already do it) | ||||
| | * | Remove link that’s already present at the top of the file | Éric Araujo | 2011-06-03 | 1 | -3/+0 |
| | | | |||||
| * | | Add reST target for Doc/packaging/setupcfg | Éric Araujo | 2011-06-04 | 2 | -0/+7 |
| | | | |||||
| * | | Add missing section of doc file lost among repositories and conversions | Éric Araujo | 2011-06-04 | 1 | -3/+160 |
| | | | |||||
| * | | Point to new collections.abc module for collections ABCs | Éric Araujo | 2011-06-03 | 1 | -1/+1 |
| | | | |||||
* | | | Drop claim about nasty problem. | Martin v. Löwis | 2011-06-06 | 1 | -6/+0 |
| | | | | | | | | | | | | | | | | | | It's unclear what this was referring to; most likely, it was about sockets that the application had already closed, in which case it's not a sockets problem, but an application problem. | ||||
* | | | Drop unfounded claims about performance. | Martin v. Löwis | 2011-06-06 | 1 | -27/+1 |
| | | | |||||
* | | | merge heads. | Gregory P. Smith | 2011-06-05 | 67 | -1179/+8778 |
|\ \ \ | |/ / | |||||
| * | | Merge #12249 fix from 3.2 | Éric Araujo | 2011-06-03 | 1 | -0/+1 |
| |\ \ | | |/ | |||||
| | * | Document working dir for “make html” (#12249). Patch by Tshepang ↵ | Éric Araujo | 2011-06-03 | 1 | -0/+1 |
| | | | | | | | | | | | | Lekhonkhobe. | ||||
| | * | Fix named tuples to work with vars(). | Raymond Hettinger | 2011-06-03 | 1 | -0/+2 |
| | | | |||||
| * | | Fix reST label for collections ABCs. | Éric Araujo | 2011-06-03 | 3 | -3/+5 |
| | | | | | | | | | | | | | | | | | | The previous markup hijacked the abstract-base-classes glossary entry, which resulted in the HTML linking to collections.abc when defining the generic ABC concept. Now the glossary links to the abc module. | ||||
| * | | Add NEWS and whatsnew entries for the packaging module | Éric Araujo | 2011-06-03 | 1 | -0/+13 |
| | | | |||||
| * | | Merge packaging doc fix | Éric Araujo | 2011-06-02 | 5 | -15/+72 |
| |\ \ | |||||
| | * | | Packaging doc: Add missing index file, improve main page description. | Éric Araujo | 2011-06-02 | 4 | -14/+71 |
| | | | | | | | | | | | | | | | | Also promote notices from distutils doc to deprecation boxes. | ||||
| * | | | this documentation is now handled by all the new packaging contributors | Tarek Ziade | 2011-06-02 | 1 | -1/+1 |
| | | | | |||||
| * | | | merge | Raymond Hettinger | 2011-06-01 | 1 | -22/+32 |
| |\ \ \ | | |/ / | |/| / | | |/ | |||||
| | * | Forward port doc updates for builtin functions. | Raymond Hettinger | 2011-06-01 | 1 | -22/+32 |
| | | | |||||
| * | | Kill trailing whitespace | Éric Araujo | 2011-06-01 | 4 | -30/+30 |
| | | | |||||
| * | | Add documentation for the packaging module. | Éric Araujo | 2011-06-01 | 42 | -3/+7388 |
| | | | | | | | | | | | | | | | This updates the user guide to refer to Packaging instead of Distutils. Some files still require an update. | ||||
| * | | Issue #12196: Add a note on os.pipe2() in the "Whats' new in Python 3.3" | Charles-François Natali | 2011-06-01 | 1 | -0/+5 |
| | | | | | | | | | | | | document. | ||||
| * | | Merge 3.2 | Éric Araujo | 2011-06-01 | 1 | -3/+3 |
| |\ \ | | |/ | |||||
| | * | Branch merge | Éric Araujo | 2011-06-01 | 1 | -3/+3 |
| | |\ | |||||
| | | * | Fix markup: arguments in a class directive are __init__ arguments, not base ↵ | Éric Araujo | 2011-05-31 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | classes | ||||
| * | | | merge 3.2 | Benjamin Peterson | 2011-06-01 | 1 | -1/+1 |
| |\ \ \ | | |/ / | |||||
| | * | | demote this to a note | Benjamin Peterson | 2011-06-01 | 1 | -1/+1 |
| | |/ |