pitrou commented on PR #14764:
URL: https://github.com/apache/arrow/pull/14764#issuecomment-1330941785
As the comments on the JIRA diagnose, this is not a problem with URI
parsing, but with the Python side not supporting relative paths.
Encoding the example filename to be URI-compatible gives the following:
```py
>>> from urllib.parse import quote
>>> quote("δΎ‹.parquet")
'%E4%BE%8B.parquet'
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]