summaryrefslogtreecommitdiffstats
path: root/Doc/distutils
Commit message (Collapse)AuthorAgeFilesLines
* Issue #26462: Doc: reduce literal_block warnings, fix syntax highlighting.Martin Panter2016-07-263-5/+15
| | | | Patch by Julien Palard.
* Issue #26014: Update 3.x packaging documentation:Ned Deily2016-06-061-1/+5
| | | | | | | - "See also" links to the new docs are now provided in the legacy pages - links to setuptools documentation have been updated (original patch by Susan Sun)
* Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-101-2/+2
| | | | Original patch by James Edwards.
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
|
* Issue #26638: Fix links to some CLI options and section headingsMartin Panter2016-04-162-5/+5
| | | | | | * Disable inappropriate links to Python interpreter options * Correct link to CLI section in zipapp * Make CLI section label in timeit less ambiguous
* Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵Georg Brandl2016-02-261-1/+1
| | | | to SilentGhost for the patch.
* Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak.Georg Brandl2016-02-251-3/+3
|
* merge 3.4Benjamin Peterson2015-11-041-4/+3
|\
| * link to modern PUG urlBenjamin Peterson2015-11-041-4/+3
| |
* | Issue #25523: Merge a-to-an corrections from 3.4.Serhiy Storchaka2015-11-021-1/+1
|\ \ | |/
| * Issue #25523: Further a-to-an corrections.Serhiy Storchaka2015-11-021-1/+1
| |
* | Issue #25161: Merge full stops from 3.4 into 3.5Martin Panter2015-10-101-1/+1
|\ \ | |/
| * Issue #25161: Add full stops in documentation; patch by Takase ArihiroMartin Panter2015-10-101-1/+1
| |
* | merge 3.4Benjamin Peterson2015-09-131-1/+1
|\ \ | |/
| * fix name of argument in docstring and the docs (closes #25076)Benjamin Peterson2015-09-131-1/+1
| | | | | | | | Patch by TAKASE Arihiro.
| * Back porting changeset db302b88fdb6 to 3.4 branch, which fixed multiple ↵Senthil Kumaran2015-06-152-3/+3
| | | | | | | | | | | | | | | | | | documentation typos. Related Issues: #issue21528 #issue24453
* | Fix versionchanged directivesZachary Ware2015-07-072-2/+2
| |
* | Issue #16314: Added support for the LZMA compression in distutils.Serhiy Storchaka2015-05-163-32/+55
| |
* | Issue #23731: Implement PEP 488.Brett Cannon2015-04-132-8/+9
| | | | | | | | | | | | The concept of .pyo files no longer exists. Now .pyc files have an optional `opt-` tag which specifies if any extra optimizations beyond the peepholer were applied.
* | Issue #23682: Delete Python 2.2 mention from distutils documentation.Berker Peksag2015-03-171-14/+0
|\ \ | |/ | | | | Patch by Thomas Kluyver.
| * Issue #23682: Delete Python 2.2 mention from distutils documentation.Berker Peksag2015-03-171-14/+0
| | | | | | | | Patch by Thomas Kluyver.
* | merge 3.4 (#23221)Benjamin Peterson2015-01-131-1/+1
|\ \ | |/
| * fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-131-1/+1
| | | | | | | | Patch by Karan Goel.
* | merge with 3.4Georg Brandl2014-10-301-1/+1
|\ \ | |/
| * distutils example: fix invalid rst in description stringGeorg Brandl2014-10-301-1/+1
| |
| * Doc: fix default role usage (except in unittest mock docs)Georg Brandl2014-10-301-5/+5
| |
* | Doc: fix default role usage (except in unittest mock docs)Georg Brandl2014-10-301-5/+5
| |
* | merge with 3.4Georg Brandl2014-10-291-1/+1
|\ \ | |/
| * Fixing broken links in doc, part 4: some more breaks and redirectsGeorg Brandl2014-10-291-1/+1
| |
* | merge with 3.4Georg Brandl2014-10-291-1/+1
|\ \ | |/
| * Fixing broken links in doc, part 1: faq/Georg Brandl2014-10-291-1/+1
| |
* | Merge with 3.4Georg Brandl2014-10-293-4/+4
|\ \ | |/
| * Use https:// URLs when referring to python.org hosts.Georg Brandl2014-10-293-4/+4
| |
* | Merge: #17325: Improve distutils PyPI documentation.R David Murray2014-10-121-56/+90
|\ \ | |/
| * #17325: Improve distutils PyPI documentation.R David Murray2014-10-121-56/+90
| | | | | | | | Patch by Chris Jerdonek.
* | merge with 3.4Georg Brandl2014-09-206-57/+57
|\ \ | |/
| * Doc: remove invalid uses of ":option:" which will emit warnings in Sphinx 1.3.Georg Brandl2014-09-206-57/+57
| |
* | Merge with 3.4Terry Jan Reedy2014-06-131-3/+0
|\ \ | |/
| * Issue #21726: Remove unnecessary and contextually wrong line.Terry Jan Reedy2014-06-131-3/+0
| |
* | Fix Issue #21528 - Fix documentation typosDonald Stufft2014-05-202-3/+3
|/
* Remove superfluous open parenthesis. Noticed by cocoatomo on docs@.Zachary Ware2014-03-241-1/+1
|
* Add missing parenthesis. Found by cocoatomo on docs@.Zachary Ware2014-03-201-1/+1
|
* Merge in all documentation changes since branching 3.4.0rc1.Larry Hastings2014-03-164-27/+16
|
* Issue #19407: merge PPUG notes from 3.3Nick Coghlan2013-12-101-0/+10
|\
| * Issue #19407: add Python Packaging User Guide notesNick Coghlan2013-12-101-0/+10
| | | | | | | | | | | | | | | | | | | | The stdlib docs for package distribution and building extensions are rather dated, and that isn't expected to change for 2.7 and 3.3. The Python Packaging User Guide isn't complete either, but it's already a much better road map for new users than the existing stdlib docs.
* | Issue #19544 and Issue #1180: Restore global option to ignore ↵Andrew Kuchling2013-11-101-1/+2
| | | | | | | | ~/.pydistutils.cfg in Distutils, accidentally removed in backout of distutils2 changes.
* | Issue #19544 and Issue #6516: Restore support for --user and --group ↵Andrew Kuchling2013-11-151-5/+13
|/ | | | parameters to sdist command as found in Python 2.7 and originally slated for Python 3.2 but accidentally rolled back as part of the distutils2 rollback. Closes Issue #6516.
* Issue 19544 and Issue #7457: Restore the read_pkg_file method to ↵Jason R. Coombs2013-11-101-0/+42
| | | | distutils.dist.DistributionMetadata accidentally removed in the undo of distutils2.
* #19196: Improved cross-references in distutils documentation.Serhiy Storchaka2013-10-092-14/+17
|
* Fix missing period.Georg Brandl2013-10-061-1/+1
|