@@ -48,7 +48,10 @@ def read_csv(
48
48
| None = ...,
49
49
dtype : DtypeArg | defaultdict | None = ...,
50
50
engine : CSVEngine | None = ...,
51
- converters : dict [int | str , Callable [[str ], Any ]] | None = ...,
51
+ converters : dict [int | str , Callable [[str ], Any ]]
52
+ | dict [int , Callable [[str ], Any ]]
53
+ | dict [str , Callable [[str ], Any ]]
54
+ | None = ...,
52
55
true_values : list [str ] = ...,
53
56
false_values : list [str ] = ...,
54
57
skipinitialspace : bool = ...,
@@ -111,7 +114,10 @@ def read_csv(
111
114
| None = ...,
112
115
dtype : DtypeArg | defaultdict | None = ...,
113
116
engine : CSVEngine | None = ...,
114
- converters : dict [int | str , Callable [[str ], Any ]] | None = ...,
117
+ converters : dict [int | str , Callable [[str ], Any ]]
118
+ | dict [int , Callable [[str ], Any ]]
119
+ | dict [str , Callable [[str ], Any ]]
120
+ | None = ...,
115
121
true_values : list [str ] = ...,
116
122
false_values : list [str ] = ...,
117
123
skipinitialspace : bool = ...,
@@ -174,7 +180,10 @@ def read_csv(
174
180
| None = ...,
175
181
dtype : DtypeArg | defaultdict | None = ...,
176
182
engine : CSVEngine | None = ...,
177
- converters : dict [int | str , Callable [[str ], Any ]] | None = ...,
183
+ converters : dict [int | str , Callable [[str ], Any ]]
184
+ | dict [int , Callable [[str ], Any ]]
185
+ | dict [str , Callable [[str ], Any ]]
186
+ | None = ...,
178
187
true_values : list [str ] = ...,
179
188
false_values : list [str ] = ...,
180
189
skipinitialspace : bool = ...,
@@ -237,7 +246,10 @@ def read_table(
237
246
| None = ...,
238
247
dtype : DtypeArg | defaultdict | None = ...,
239
248
engine : CSVEngine | None = ...,
240
- converters : dict [int | str , Callable [[str ], Any ]] | None = ...,
249
+ converters : dict [int | str , Callable [[str ], Any ]]
250
+ | dict [int , Callable [[str ], Any ]]
251
+ | dict [str , Callable [[str ], Any ]]
252
+ | None = ...,
241
253
true_values : list [str ] = ...,
242
254
false_values : list [str ] = ...,
243
255
skipinitialspace : bool = ...,
@@ -300,7 +312,10 @@ def read_table(
300
312
| None = ...,
301
313
dtype : DtypeArg | defaultdict | None = ...,
302
314
engine : CSVEngine | None = ...,
303
- converters : dict [int | str , Callable [[str ], Any ]] | None = ...,
315
+ converters : dict [int | str , Callable [[str ], Any ]]
316
+ | dict [int , Callable [[str ], Any ]]
317
+ | dict [str , Callable [[str ], Any ]]
318
+ | None = ...,
304
319
true_values : list [str ] = ...,
305
320
false_values : list [str ] = ...,
306
321
skipinitialspace : bool = ...,
@@ -363,7 +378,10 @@ def read_table(
363
378
| None = ...,
364
379
dtype : DtypeArg | defaultdict | None = ...,
365
380
engine : CSVEngine | None = ...,
366
- converters : dict [int | str , Callable [[str ], Any ]] | None = ...,
381
+ converters : dict [int | str , Callable [[str ], Any ]]
382
+ | dict [int , Callable [[str ], Any ]]
383
+ | dict [str , Callable [[str ], Any ]]
384
+ | None = ...,
367
385
true_values : list [str ] = ...,
368
386
false_values : list [str ] = ...,
369
387
skipinitialspace : bool = ...,
0 commit comments