- 05 Feb, 2019 1 commit
-
-
Steve Dower authored
-
- 20 Jan, 2019 1 commit
-
-
Marc Schlaich authored
-
- 09 Jan, 2019 1 commit
-
-
Miro Hrončok authored
-
- 28 Dec, 2018 1 commit
-
-
Michael Felt authored
Command line options for the xlc compiler behave differently from gcc and clang, so skip this test case for now when xlc is the compiler. Patch by aixtools (Michael Felt)
-
- 20 Dec, 2018 1 commit
-
-
Serhiy Storchaka authored
-
- 18 Dec, 2018 1 commit
-
-
Victor Stinner authored
check_environ() of distutils.utils now catchs KeyError on calling pwd.getpwuid(): don't create the HOME environment variable in this case.
-
- 17 Dec, 2018 1 commit
-
-
Paul Ganssle authored
platform.dist() is deprecated and slated for removal in Python 3.8. The upload command itself should also not be used to upload to PyPI, but while it continues to exist it should not use deprecated functions.
-
- 05 Dec, 2018 1 commit
-
-
Serhiy Storchaka authored
-
- 05 Nov, 2018 1 commit
-
-
Serhiy Storchaka authored
Two kind of mistakes: 1. Missed space. After concatenating there is no space between words. 2. Missed comma. Causes unintentional concatenating in a list of strings.
-
- 27 Oct, 2018 1 commit
-
-
Steve Dower authored
-
- 23 Sep, 2018 2 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
Use "backslashreplace" instead of "unicode-escape". It is not implementation depended and escapes only non-encodable characters. Also simplify the code.
-
- 20 Sep, 2018 1 commit
-
-
Steve Dower authored
-
- 11 Sep, 2018 1 commit
-
-
Victor Stinner authored
In distutils.command.install, replace "pliant children" (previously, it was "pliant slaves") with "helpers". <!-- issue-number: [bpo-34605](https://www.bugs.python.org/issue34605) --> https://bugs.python.org/issue34605 <!-- /issue-number -->
-
- 08 Sep, 2018 1 commit
-
-
Julien Malard authored
This caused installation errors in some cases on Windows. Patch by Julien Malard.
-
- 07 Sep, 2018 2 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
* Replace "master process" with "parent process" * Replace "master option mappings" with "main option mappings" * Replace "master pattern object" with "main pattern object" * ssl: replace "master" with "server" * And some other similar changes
-
- 04 Sep, 2018 1 commit
-
-
Victor Stinner authored
distutils.spawn.find_executable() now falls back on os.defpath if the PATH environment variable is not set.
-
- 26 Jul, 2018 1 commit
-
-
Steve Dower authored
-
- 16 Jul, 2018 1 commit
-
-
Antoine Pitrou authored
bpo-32430: Rename Modules/Setup.dist to Modules/Setup Remove the necessity to copy the former manually to the latter when updating the local source tree.
-
- 18 Feb, 2018 1 commit
-
-
Éric Araujo authored
-
- 26 Jan, 2018 1 commit
-
-
Bo Bayles authored
Patch by Bo Bayles.
-
- 18 Jan, 2018 1 commit
-
-
Steve Dower authored
-
- 14 Dec, 2017 1 commit
-
-
Victor Stinner authored
CRT v142 is binary compatible with CRT v140.
-
- 05 Dec, 2017 1 commit
-
-
Neil Schemenauer authored
* 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.
-
- 28 Nov, 2017 2 commits
-
-
Victor Stinner authored
Revert distutils changes of the commit 696b501cd11dc429a0f661adeb598bfaf89e4112 and remove the realm variable.
-
Victor Stinner authored
* distutils.config: Use the PyPIRCCommand.realm attribute if set * turtledemo: wait until macOS osascript command completes to not create a zombie process * Tools/scripts/treesync.py: declare 'default_answer' and 'create_files' as globals to modify them with the command line arguments. Previously, -y, -n, -f and -a options had no effect. flake8 warning: "F841 local variable 'p' is assigned to but never used".
-
- 23 Nov, 2017 1 commit
-
-
Berker Peksag authored
The Distribution class now explicitly raises an exception when 'classifiers', 'keywords' and 'platforms' fields are not specified as a list.
-
- 18 Nov, 2017 1 commit
-
-
xdegaye authored
* Run gzip with separate command line options (Android understands '-f9' as the name of a file). * Creation of a hard link is controled by SELinux on Android.
-
- 08 Nov, 2017 1 commit
-
-
Victor Stinner authored
kB (*kilo* byte) unit means 1000 bytes, whereas KiB ("kibibyte") means 1024 bytes. KB was misused: replace kB or KB with KiB when appropriate. Same change for MB and GB which become MiB and GiB. Change the output of Tools/iobench/iobench.py. Round also the size of the documentation from 5.5 MB to 5 MiB.
-
- 26 Oct, 2017 1 commit
-
-
Benjamin Peterson authored
We stop support this OS in 2007 with commit 19fab761b71a1687aee3415db3a937b5ce31975d. Let's finish.
-
- 29 Sep, 2017 1 commit
-
-
Benjamin Peterson authored
-
- 25 Sep, 2017 1 commit
-
-
Stefan Grönke authored
-
- 07 Sep, 2017 1 commit
-
-
Steve Dower authored
-
- 06 Sep, 2017 2 commits
-
-
Zachary Ware authored
It was mostly removed long ago.
-
Steve Dower authored
-
- 04 Sep, 2017 1 commit
-
-
Benjamin Peterson authored
See PEP 11.
-
- 18 May, 2017 1 commit
-
-
Jon Dufresne authored
* Replaced list(<generator expression>) with list comprehension * Replaced dict(<generator expression>) with dict comprehension * Replaced set(<list literal>) with set literal * Replaced builtin func(<list comprehension>) with func(<generator expression>) when supported (e.g. any(), all(), tuple(), min(), & max())
-
- 09 May, 2017 1 commit
-
-
Jeremy Kloth authored
compiled out-of-tree (builddir != srcdir). (see also bpo-15366)
-
- 04 May, 2017 1 commit
-
-
Victor Stinner authored
The AST_H_DIR variable was removed from Makefile.pre.in by the commit a5c62a8e9f0de6c4133825a5710984a3cd5e102b (bpo-23404). AST_H_DIR was hardcoded to "Include", so replace the removed variable by its content. Remove also ASDLGEN variable from sysconfig example since this variable was also removed.
-