@@ -860,7 +860,7 @@ def read_csv(
860
860
float_precision : Literal ["high" , "legacy" , "round_trip" ] | None = None ,
861
861
storage_options : StorageOptions | None = None ,
862
862
dtype_backend : DtypeBackend | lib .NoDefault = lib .no_default ,
863
- ) -> DataFrame | TextFileReader :
863
+ ) -> DataFrame | TextFileReader | Generator [ DataFrame ] | Generator [ TextFileReader ] :
864
864
# locals() should never be modified
865
865
kwds = locals ().copy ()
866
866
del kwds ["filepath_or_buffer" ]
@@ -995,7 +995,7 @@ def read_table(
995
995
float_precision : Literal ["high" , "legacy" , "round_trip" ] | None = None ,
996
996
storage_options : StorageOptions | None = None ,
997
997
dtype_backend : DtypeBackend | lib .NoDefault = lib .no_default ,
998
- ) -> DataFrame | TextFileReader :
998
+ ) -> DataFrame | TextFileReader | Generator [ DataFrame ] | Generator [ TextFileReader ] :
999
999
# locals() should never be modified
1000
1000
kwds = locals ().copy ()
1001
1001
del kwds ["filepath_or_buffer" ]
@@ -1065,7 +1065,7 @@ def read_fwf(
1065
1065
iterator : bool = False ,
1066
1066
chunksize : int | None = None ,
1067
1067
** kwds : Unpack [_read_shared [HashableT ]],
1068
- ) -> DataFrame | TextFileReader :
1068
+ ) -> DataFrame | TextFileReader | Generator [ DataFrame ] | Generator [ TextFileReader ] :
1069
1069
r"""
1070
1070
Read a table of fixed-width formatted lines into DataFrame.
1071
1071
0 commit comments