-
-
Notifications
You must be signed in to change notification settings - Fork 179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What is the purpose of 'ParquetFile.sep' attribute? #687
Comments
Probably for creating path names from the relative paths contained in the metadata. However, even Windows works with a separator of "/", and fsspec filesystems all use that, so it probably went defunct. The signature predates fsspec (and you can now explicitly pass a filesystem object). |
Ok, I propose to solve this ticket when corresponding dask ticket is solved. |
The linked issue is closed, but this thread is now very old. |
Yes, sorry, there has been no follow-up so far. |
Actually, let's just close this. We probably should leave the unused parameter in place for at least another release cycle. |
Hi,
Currently investigating fastparquet source code, I could notice the undocumented
sep
attribute inParquetFile
class.It appears in
__init__
function signature, line 96.It is recorded line 161
self.sep = sep
It can be displayed through
__getstate__
line 162.But then i don't see it being used elsewhere.
Please, what is its purpose?
Thanks for your feedback,
Have a good day,
Bests
The text was updated successfully, but these errors were encountered: