File tree 1 file changed +0
-16
lines changed 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change 343
343
Alias for sep.
344
344
"""
345
345
346
- _fwf_widths = """\
347
- colspecs : list of pairs (int, int) or 'infer'. optional
348
- A list of pairs (tuples) giving the extents of the fixed-width
349
- fields of each line as half-open intervals (i.e., [from, to[ ).
350
- String value 'infer' can be used to instruct the parser to try
351
- detecting the column specifications from the first 100 rows of
352
- the data which are not being skipped via skiprows (default='infer').
353
- widths : list of ints. optional
354
- A list of field widths which can be used instead of 'colspecs' if
355
- the intervals are contiguous.
356
- delimiter : str, default ``'\t ' + ' '``
357
- Characters to consider as filler characters in the fixed-width file.
358
- Can be used to specify the filler character of the fields
359
- if it is not spaces (e.g., '~').
360
- """
361
-
362
346
363
347
def _validate_integer (name , val , min_val = 0 ):
364
348
"""
You can’t perform that action at this time.
0 commit comments