You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BUG: Fix loading files from S3 with # characters in URL (GH25945)
This fixes loading files with URLs such as s3://bucket/key#1.csv. The part
from the # on was being lost because it was considered to be a URL fragment.
The fix disables URL fragment parsing as it doesn't make sense for S3 URLs.
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.25.0.rst
+1
Original file line number
Diff line number
Diff line change
@@ -356,6 +356,7 @@ I/O
356
356
- Bug in :func:`read_hdf` not properly closing store after a ``KeyError`` is raised (:issue:`25766`)
357
357
- Bug in ``read_csv`` which would not raise ``ValueError`` if a column index in ``usecols`` was out of bounds (:issue:`25623`)
358
358
- Improved :meth:`pandas.read_stata` and :class:`pandas.io.stata.StataReader` to read incorrectly formatted 118 format files saved by Stata (:issue:`25960`)
359
+
- Fixed bug in loading objects from S3 that contain # characters in the URL (:issue:`25945`)
0 commit comments