(source, columns=None, **kwargs)
| 1976 | |
| 1977 | |
| 1978 | def read_pandas(source, columns=None, **kwargs): |
| 1979 | return read_table( |
| 1980 | source, columns=columns, use_pandas_metadata=True, **kwargs |
| 1981 | ) |
| 1982 | |
| 1983 | |
| 1984 | read_pandas.__doc__ = _read_table_docstring.format( |
nothing calls this directly
no test coverage detected