Serhiy Storchaka added the comment:

It is important that the result is an int at least for small ints. So I prefer 
to keep limited test.

-            self.assertIsInstance(result, type(int(result)))
+            if abs(result) < 2**31:
+                self.assertIsInstance(result, int)

----------

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

Reply via email to