summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2011-03-16 13:41:32 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2011-03-16 13:41:32 (GMT)
commit0b8753d24b9a37834c23faa1da705f4ed222d928 (patch)
tree306cf9a49a0e3541408d2efda15d4d518c7d7ef9 /Misc
parent9465d424ec2c880486514736c321f589878fa870 (diff)
downloadcpython-0b8753d24b9a37834c23faa1da705f4ed222d928.zip
cpython-0b8753d24b9a37834c23faa1da705f4ed222d928.tar.gz
cpython-0b8753d24b9a37834c23faa1da705f4ed222d928.tar.bz2
Issue #11569: use absolute path to the sysctl command in multiprocessing to
ensure that it will be found regardless of the shell PATH. This ensures that multiprocessing.cpu_count works on default installs of MacOSX.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index c7fd2ff..e5ee871 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -583,6 +583,7 @@ Tim Northover
Joe Norton
Neal Norwitz
Michal Nowikowski
+Steffen Daode Nurpmeso
Nigel O'Brian
Kevin O'Connor
Tim O'Malley
diff --git a/Misc/NEWS b/Misc/NEWS
index c4627fa..d5c4699 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,10 @@ Core and Builtins
Library
-------
+- Issue #11569: use absolute path to the sysctl command in multiprocessing to
+ ensure that it will be found regardless of the shell PATH. This ensures
+ that multiprocessing.cpu_count works on default installs of MacOSX.
+
- Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is
not installed. Instead, the zipfile.ZIP_STORED compression is used to create
the ZipFile. Patch by Natalia B. Bidart.