File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 3232 AbstractMethodError ,
3333 ParserWarning ,
3434)
35- from pandas .util ._decorators import Appender
35+ from pandas .util ._decorators import (
36+ Appender ,
37+ set_module ,
38+ )
3639from pandas .util ._exceptions import find_stack_level
3740from pandas .util ._validators import check_dtype_backend
3841
@@ -771,6 +774,7 @@ def read_csv(
771774 % "filepath_or_buffer" ,
772775 )
773776)
777+ @set_module ("pandas" )
774778def read_csv (
775779 filepath_or_buffer : FilePath | ReadCsvBuffer [bytes ] | ReadCsvBuffer [str ],
776780 * ,
@@ -906,6 +910,7 @@ def read_table(
906910 % "filepath_or_buffer" ,
907911 )
908912)
913+ @set_module ("pandas" )
909914def read_table (
910915 filepath_or_buffer : FilePath | ReadCsvBuffer [bytes ] | ReadCsvBuffer [str ],
911916 * ,
@@ -1023,6 +1028,7 @@ def read_fwf(
10231028) -> DataFrame : ...
10241029
10251030
1031+ @set_module ("pandas" )
10261032def read_fwf (
10271033 filepath_or_buffer : FilePath | ReadCsvBuffer [bytes ] | ReadCsvBuffer [str ],
10281034 * ,
You can’t perform that action at this time.
0 commit comments