Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Docs: remove redundant "adverb-adjective" hyphens from compound modifiers ↵ | Ned Batchelder | 2022-07-05 | 1 | -1/+1 |
| | | | | | (GH-94551) Discussion: https://discuss.python.org/t/slight-grammar-fix-throughout-adverbs-dont-need-hyphen/17021 | ||||
* | gh-93851: Fix all broken links in Doc/ (GH-93853) | Oleg Iarygin | 2022-06-21 | 1 | -1/+1 |
| | |||||
* | bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515) | Serhiy Storchaka | 2021-09-22 | 1 | -4/+4 |
| | | | | | | | Replace old names when they refer to actual versions of macOS. Keep historical names in references to older versions. Co-authored-by: Patrick Reader <_@pxeger.com> | ||||
* | bpo-45124: Remove the bdist_msi command (GH-28195) | Hugo van Kemenade | 2021-09-07 | 1 | -16/+0 |
| | | | | The bdist_msi command, deprecated in Python 3.9, is now removed. Use bdist_wheel (wheel packages) instead. | ||||
* | bpo-41282: (PEP 632) Deprecate distutils.sysconfig (partial implementation ↵ | Lumír 'Frenzy' Balhar | 2021-04-23 | 1 | -0/+5 |
| | | | | | | | | | | of the PEP) (GH-23142) This change: * merges `distutils.sysconfig` into `sysconfig` while keeping the original functionality and * marks `distutils.sysconfig` as deprecated https://bugs.python.org/issue41282 | ||||
* | bpo-42802: Remove distutils bdist_wininst command (GH-24043) | Victor Stinner | 2021-01-08 | 1 | -18/+0 |
| | | | | | | | | | | The distutils bdist_wininst command deprecated in Python 3.8 has been removed. The distutils bidst_wheel command is now recommended to distribute binary packages on Windows. * Remove Lib/distutils/command/bdist_wininst.py * Remove PC/bdist_wininst/ project * Remove Lib/distutils/command/wininst-*.exe programs * Remove all references to bdist_wininst | ||||
* | bpo-39586: Deprecate distutils bdist_msi command (GH-18415) | Hugo van Kemenade | 2020-02-10 | 1 | -0/+3 |
| | |||||
* | bpo-38021: Modify AIX platform_tag so it covers PEP 425 needs (GH-17303) | Michael Felt | 2019-12-15 | 1 | -0/+18 |
| | | | | | | | | Provides a richer platform tag for AIX that we expect to be sufficient for PEP 425 binary distribution identification. Any backports to earlier Python versions will be handled via setuptools. Patch by Michael Felt. | ||||
* | bpo-21063: Improve module synopsis for distutils (GH-17363) | Sanchit Khurana | 2019-11-25 | 1 | -5/+5 |
| | |||||
* | bpo-36797: Fix a dead link in Doc/distutils/apiref (GH-15700) | Miro Hrončok | 2019-09-05 | 1 | -2/+2 |
| | | | https://bugs.python.org/issue36797 | ||||
* | bpo-37481: Deprecate distutils bdist_wininst command (GH-14553) | Victor Stinner | 2019-07-05 | 1 | -0/+3 |
| | | | | The distutils bdist_wininst command is now deprecated, use bdist_wheel (wheel packages) instead. | ||||
* | bpo-21536: On Cygwin, C extensions must be linked with libpython (GH-13549) | E. M. Bray | 2019-05-24 | 1 | -1/+1 |
| | | | | | | | | | | It is also possible to link against a library or executable with a statically linked libpython, but not both with the same DLL. In fact building a statically linked python is currently broken on Cygwin for other (related) reasons. The same problem applies to other POSIX-like layers over Windows (MinGW, MSYS) but Python's build system does not seem to attempt to support those platforms at the moment. | ||||
* | bpo-36797: Prune more legacy distutils documentation (GH-13092) | Nick Coghlan | 2019-05-14 | 1 | -0/+10 |
| | | | | | | Removes more legacy distutils documentation, and more clearly marks what is left as potentially outdated, with references to setuptools as a replacement. | ||||
* | bpo-21536: On Android, C extensions are linked to libpython (GH-12989) | xdegaye | 2019-04-29 | 1 | -1/+2 |
| | |||||
* | bpo-21536: C extensions are no longer linked to libpython (GH-12946) | Victor Stinner | 2019-04-25 | 1 | -0/+4 |
| | | | | | | | | | | | | | | On Unix, C extensions are no longer linked to libpython. It is now possible to load a C extension built using a shared library Python with a statically linked Python. When Python is embedded, libpython must not be loaded with RTLD_LOCAL, but RTLD_GLOBAL instead. Previously, using RTLD_LOCAL, it was already not possible to load C extensions which were not linked to libpython, like C extensions of the standard library built by the "*shared*" section of Modules/Setup. distutils, python-config and python-config.py have been modified. | ||||
* | Add missing period in distutils.dep_util.newer_group doc (GH-11003) | Andre Delfino | 2018-12-06 | 1 | -1/+1 |
| | |||||
* | bpo-35110: Fix unintentional spaces around hyphens and dashes. (GH-10231) | Serhiy Storchaka | 2018-10-31 | 1 | -4/+5 |
| | |||||
* | bpo-35042: Use the :pep: role where a PEP is specified (#10036) | Stéphane Wirtel | 2018-10-26 | 1 | -3/+3 |
| | |||||
* | bpo-33503: Fix the broken pypi link in the source and the documentation ↵ | Stéphane Wirtel | 2018-05-15 | 1 | -1/+1 |
| | | | | (GH-6814) | ||||
* | bpo-19610: Warn if distutils is provided something other than a list to some ↵ | Neil Schemenauer | 2017-12-05 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | fields (#4685) * Rather than raise TypeError, warn and call list() on the value. * Fix tests, revise NEWS and whatsnew text. * Revise documentation, a string is okay as well. * Ensure 'requires' and 'obsoletes' are real lists. * Test that requires and obsoletes are turned to lists. | ||||
* | bpo-19610: setup() now raises TypeError for invalid types (GH-4519) | Berker Peksag | 2017-11-23 | 1 | -0/+4 |
| | | | | | | The Distribution class now explicitly raises an exception when 'classifiers', 'keywords' and 'platforms' fields are not specified as a list. | ||||
* | Remove all mention of Windows IA-64 support (GH-3389) | Zachary Ware | 2017-09-06 | 1 | -2/+2 |
| | | | It was mostly removed long ago. | ||||
* | remove IRIX support (closes bpo-31341) (#3310) | Benjamin Peterson | 2017-09-04 | 1 | -7/+4 |
| | | | See PEP 11. | ||||
* | Fix spacing after C++ in documentation | Martin Panter | 2016-11-05 | 1 | -1/+1 |
| | |||||
* | Issue #26638: Mask undefined CLI options to defeat new Sphinx warnings | Martin Panter | 2016-10-30 | 1 | -12/+12 |
| | |||||
* | Issue #23921: Standardized documentation whitespace formatting. | Serhiy Storchaka | 2016-05-10 | 1 | -2/+2 |
| | | | | Original patch by James Edwards. | ||||
* | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 1 | -1/+1 |
| | |||||
* | Issue #26638: Fix links to some CLI options and section headings | Martin Panter | 2016-04-16 | 1 | -4/+4 |
| | | | | | | * 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 Brandl | 2016-02-26 | 1 | -1/+1 |
| | | | | to SilentGhost for the patch. | ||||
* | Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak. | Georg Brandl | 2016-02-25 | 1 | -3/+3 |
| | |||||
* | Issue #25161: Merge full stops from 3.4 into 3.5 | Martin Panter | 2015-10-10 | 1 | -1/+1 |
|\ | |||||
| * | Issue #25161: Add full stops in documentation; patch by Takase Arihiro | Martin Panter | 2015-10-10 | 1 | -1/+1 |
| | | |||||
* | | merge 3.4 | Benjamin Peterson | 2015-09-13 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | fix name of argument in docstring and the docs (closes #25076) | Benjamin Peterson | 2015-09-13 | 1 | -1/+1 |
| | | | | | | | | Patch by TAKASE Arihiro. | ||||
| * | Back porting changeset db302b88fdb6 to 3.4 branch, which fixed multiple ↵ | Senthil Kumaran | 2015-06-15 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | documentation typos. Related Issues: #issue21528 #issue24453 | ||||
* | | Issue #16314: Added support for the LZMA compression in distutils. | Serhiy Storchaka | 2015-05-16 | 1 | -12/+20 |
| | | |||||
* | | Issue #23731: Implement PEP 488. | Brett Cannon | 2015-04-13 | 1 | -4/+7 |
| | | | | | | | | | | | | 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. | ||||
* | | merge 3.4 (#23221) | Benjamin Peterson | 2015-01-13 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | fix instances of consecutive articles (closes #23221) | Benjamin Peterson | 2015-01-13 | 1 | -1/+1 |
| | | | | | | | | Patch by Karan Goel. | ||||
* | | Merge with 3.4 | Georg Brandl | 2014-10-29 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Use https:// URLs when referring to python.org hosts. | Georg Brandl | 2014-10-29 | 1 | -1/+1 |
| | | |||||
* | | Fix Issue #21528 - Fix documentation typos | Donald Stufft | 2014-05-20 | 1 | -2/+2 |
|/ | |||||
* | Add missing parenthesis. Found by cocoatomo on docs@. | Zachary Ware | 2014-03-20 | 1 | -1/+1 |
| | |||||
* | Merge in all documentation changes since branching 3.4.0rc1. | Larry Hastings | 2014-03-16 | 1 | -21/+5 |
| | |||||
* | #19196: Improved cross-references in distutils documentation. | Serhiy Storchaka | 2013-10-09 | 1 | -7/+8 |
| | |||||
* | Fix missing period. | Georg Brandl | 2013-10-06 | 1 | -1/+1 |
| | |||||
* | Closes #4159: add LaTeX tabular column specifications to tables that ↵ | Georg Brandl | 2013-03-28 | 1 | -0/+8 |
| | | | | otherwise are cut off or have overlapping text. | ||||
* | Issue #16403: Document how distutils uses the maintainer field in PKG-INFO | Petri Lehtinen | 2013-02-23 | 1 | -1/+4 |
|\ | |||||
| * | Issue #16403: Document how distutils uses the maintainer field in PKG-INFO | Petri Lehtinen | 2013-02-23 | 1 | -1/+4 |
| | | |||||
* | | Merge fixes for #13614, #13512 and #7719 from 3.2 | Éric Araujo | 2012-12-09 | 1 | -0/+6 |
|\ \ | |/ |