Skip to content

Commit c1449f5

Browse files
committed
reference issue in tests, clarify default in docstring
1 parent d00d222 commit c1449f5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pandas/io/parquet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def read_parquet(path, engine='auto', columns=None, **kwargs):
188188
----------
189189
path : string
190190
File path
191-
columns: list
191+
columns: list, default=None
192192
If not None, only these columns will be read from the file.
193193
engine : {'auto', 'pyarrow', 'fastparquet'}, default 'auto'
194194
Parquet reader library to use. If 'auto', then the option

pandas/tests/io/test_parquet.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ def test_compression(self, engine, compression):
283283
self.check_round_trip(df, engine, compression=compression)
284284

285285
def test_read_columns(self, engine, fp):
286+
#GH18154
286287
df = pd.DataFrame({'string': list('abc'),
287288
'int': list(range(1, 4))})
288289

0 commit comments

Comments
 (0)