Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f0edd1b8
Commit
f0edd1b8
authored
Mar 16, 2011
by
Ronald Oussoren
Browse files
Options
Browse Files
Download
Plain Diff
Merge with 3.1
parents
2e8a07c2
0b8753d2
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
Lib/multiprocessing/__init__.py
Lib/multiprocessing/__init__.py
+4
-1
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+4
-0
No files found.
Lib/multiprocessing/__init__.py
View file @
f0edd1b8
...
...
@@ -115,8 +115,11 @@ def cpu_count():
except
(
ValueError
,
KeyError
):
num
=
0
elif
'bsd'
in
sys
.
platform
or
sys
.
platform
==
'darwin'
:
comm
=
'/sbin/sysctl -n hw.ncpu'
if
sys
.
platform
==
'darwin'
:
comm
=
'/usr'
+
comm
try
:
with
os
.
popen
(
'sysctl -n hw.ncpu'
)
as
p
:
with
os
.
popen
(
comm
)
as
p
:
num
=
int
(
p
.
read
())
except
ValueError
:
num
=
0
...
...
Misc/ACKS
View file @
f0edd1b8
...
...
@@ -624,6 +624,7 @@ Tim Northover
Joe Norton
Neal Norwitz
Michal Nowikowski
Steffen Daode Nurpmeso
Nigel O'Brian
Kevin O'Connor
Tim O'Malley
...
...
Misc/NEWS
View file @
f0edd1b8
...
...
@@ -43,6 +43,10 @@ Library
-
Issue
#
11133
:
fix
two
cases
where
inspect
.
getattr_static
can
trigger
code
execution
.
Patch
by
Daniel
Urban
.
-
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
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment