Yogesh Chaudhari added the comment:

@Ned:
if cpus is None, then this will raise an exception in Python 3: `cpus >= 1 or 
cpus == None`

I understand that cpus >= INTEGER will raise an exception and have already 
modified the condition to remove that kind of check. 

I was merely stating that equality checks do not raise exception. 
eg:
>>> cpus = None
>>> cpus == 1
False
>>> cpus == None
True
>>>

Thanks for pointing me out in the right direction to remove those invalid 
checks and showing the use of proper alternatives at other places in the patch

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue17914>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to