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

Yes, converting Decimal to float can lose precision, so we cannot require this. 
PyNumber_Check() is already used for QUOTE_NONNUMERIC, so it would be logical 
to use it in determining that the object is a number in the cvs module.

But now the problem is with determining what is a "string". There is no way to 
check whether the object is "string-like", because virtually all objects can be 
converted to string. The only standard exception is bytes and bytearray for 
which str() may emit BytesWarning, so this conversion is not reliable. If 
restrict it only to an instance of str or its subclasses, it may break other 
user cases, for example writing Path in CVS.

----------

_______________________________________
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