DOC: read_csv
docstring incorrectly references itself in the "See Also" section
#53847
Closed
1 task done
Labels
Pandas version checks
main
hereLocation of the documentation
https://pandas.pydata.org/docs/dev/reference/api/pandas.read_csv.html
Documentation problem
In the
read_csv
docstring, under "See Also" it lists itself instead of some other relevant function such asread_table
. This is apparently becauseread_csv
andread_table
share a docstring template but this value was not parameterized like other details such as the function summary string and the defaultsep
value.Suggested fix for documentation
I suggest replacing
read_csv
withread_table
in the "See Also" section. This could be done by adding another string formatting parameter when the@Appender
decorator is called for both theread_csv
andread_table
functions, such that they include the other under "See Also".The text was updated successfully, but these errors were encountered: