Uh oh!
There was an error while loading. Please reload this page.
Drop support for Python 2.6. - #2051
Conversation
dhermes
commented
Aug 3, 2016
I'm |
tseaver
commented
Aug 4, 2016
@dhermes Should be addressed in subsequent commits. |
'gcloud._helpers._total_seconds' worked around the fact that 'datetime.timedelta.total_seconds' was not added until Python 2.7.
tseaver
commented
Aug 4, 2016
Amended to fix the lint issue. |
| super(GCloudError, self).__init__() | ||
| # suppress deprecation warning under 2.6.x | ||
| super(GCloudError, self).__init__(message) | ||
| self.message = message |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
dhermes
commented
Aug 4, 2016
Only question left: do we want to add a warning on import? |
tseaver
commented
Aug 4, 2016
I think not on import: maybe on installation. @daspecster, @jgeewax WDYT? |
dhermes
commented
Aug 4, 2016
OK let's just merge (LGTM) and file an issue to follow up / decide if we should warn on either import or installation. |
tseaver
commented
Aug 4, 2016
See also #2056. |
Co-authored-by: Victor Chudnovsky <vchudnov@google.com> Co-authored-by: Anthonios Partheniou <partheniou@google.com>
) * feat: support setting max_stream_count when fetching query result Allow user to set max_stream_count when fetching result using BigQuery Storage API with RowIterator's incremental methods: * to_arrow_iterable * to_dataframe_iterable * docs: update docs about max_stream_count for ordered query * fix: add max_stream_count params to _EmptyRowIterator's methods * test: add tests for RowIterator's max_stream_count parameter * docs: add notes on valid max_stream_count range in docstring * use a different way to iterate result --------- Co-authored-by: Lingqing Gan <lingqing.gan@gmail.com>
Closes#1607.