Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit c9471c7

Browse files
committed
fix: fix gbq.py doctest locally
1 parent f0422f3 commit c9471c7

File tree

1 file changed

+4
-2
lines changed
  • third_party/bigframes_vendored/pandas/io

1 file changed

+4
-2
lines changed

third_party/bigframes_vendored/pandas/io/gbq.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,11 @@ def read_gbq(
8686
... WHERE year = 2016
8787
... GROUP BY pitcherFirstName, pitcherLastName
8888
... ''', index_col="rowindex")
89-
>>> df.head(2)
89+
>>> print("START_OF_OUTPUT"); df.head(2) # doctest: +ELLIPSIS,+NORMALIZE_WHITESPACE
90+
START_OF_OUTPUT
91+
...
9092
pitcherFirstName pitcherLastName averagePitchSpeed
91-
rowindex
93+
...
9294
1 Albertin Chapman 96.514113
9395
2 Zachary Britton 94.591039
9496
<BLANKLINE>

0 commit comments

Comments
 (0)