Serhiy Storchaka <storchaka+cpyt...@gmail.com> added the comment:

There is PyNumber_Check(). It is not direct analog of isinstance(obj, 
numbers.Number), it checks that the object can be explicitly converted to the 
real number (int or float). UUID and IPv4Address pass this check.

As a narrow check we can use isinstance(obj, (str, int, float)). It does not 
accept Fraction, Decimal and numpy numbers, but it is what such modules like 
json or plistlib accept.

----------

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

Reply via email to