DOC: Reword get_filepath_or_buffer docstring · pandas-dev/pandas@0e0fa0a (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 0e0fa0a

DOC: Reword get_filepath_or_buffer docstring

File tree

1 file changed

lines changed

1 file changed

lines changed

Lines changed: 2 additions & 2 deletions

Original file line number Diff line number Diff line change
@@ -187,8 +187,8 @@ def _stringify_path(filepath_or_buffer):
187 187 def get_filepath_or_buffer(filepath_or_buffer, encoding=None,
188 188 compression=None):
189 189 """
190 - If the filepath_or_buffer is a url, translate and return the buffer
191 - passthru otherwise.
190 + If the filepath_or_buffer is a url, translate and return the buffer.
191 + Otherwise passthrough.
192 192
193 193 Parameters
194 194 ----------