Ethan Furman added the comment:

Currently, os.fspath will raise an exception if the thing passed in is not 
str/bytes/PathLike, and that error message will proclaim that str or bytes or 
PathLike is required; however, this is not true in cases such as Path (which 
doesn't allow bytes), and incomplete in cases such as os.open (which also 
allows ints).

On the other hand, if the thing has a functional __fspath__ (meaning calling it 
doesn't raise an exception) then os.fspath will return whatever that method 
returns, which could be complete garbage.

So os.fspath is being too strict, too open, and too lax all at the same time.

Given Guido's reluctance to check the output of __fspath__(), plus the current 
difficulty of painless integration with existing functions, I think we should 
have os.fspath() only raise an exception if obj.__fspath__ exists and calling 
it raises an exception, otherwise we return the result of calling 
obj.__fspath__(), or obj if it doesn't have __fspath__.

In case that wasn't clear, attached is a unit test that passes when the above 
changes are implemented.

----------
Added file: http://bugs.python.org/file43213/test_fspath.py

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

Reply via email to