Author: Richard Plangger <planri...@gmail.com>
Branch: py3.5
Changeset: r87824:2786d9d1c827
Date: 2016-10-16 10:09 +0200
http://bitbucket.org/pypy/pypy/changeset/2786d9d1c827/

Log:    revert last checking

diff --git a/pypy/module/posix/interp_posix.py 
b/pypy/module/posix/interp_posix.py
--- a/pypy/module/posix/interp_posix.py
+++ b/pypy/module/posix/interp_posix.py
@@ -2213,7 +2213,7 @@
     return space.call_function(w_terminal_size, w_tuple)
 
 def cpu_count(space):
-    count = intmask(rposix.cpu_count())
+    count = rposix.cpu_count()
     if count <= 0:
         return space.w_None
     return space.wrap(count)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to