| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed, please reply here (e.g. I signed it!) and we'll verify. Thanks.
|
Sorry, something went wrong.
|
Signed it |
Sorry, something went wrong.
|
CLAs look good, thanks! |
Sorry, something went wrong.
| self._buffered_data = self._stream.read(size) | ||
| self._buffered_data = self._stream.read(size) \ | ||
| if not hasattr(self._stream, | ||
| 'closed') or not self._stream.closed else '' |
|
fixed according to comments |
Sorry, something went wrong.
|
@linar-jether thanks for the changes. The pylint failures on Travis aren't due to this PR: they released a new version last Friday, which introduced new checks that we now fail. The master branch now has fixes for those failures: could you rebase your branch against it and re-push? |
Sorry, something went wrong.
|
All tests passed |
Sorry, something went wrong.
| import copy | ||
| import hashlib | ||
| from io import BytesIO | ||
| from io import BytesIO, UnsupportedOperation |
|
@linar-jether, cool! Do you think you could squash these commits down? Otherwise LGTM, but I defer to @tseaver/@dhermes for confirmation. |
Sorry, something went wrong.
|
Sure, squashed all previous commits and separated the imports |
Sorry, something went wrong.
|
@linar-jether Thanks again for your work! |
Sorry, something went wrong.
* fix: add pyarrow version check for range support * add comment why we are making a separate constant --------- Co-authored-by: Tim Sweña (Swast) <swast@google.com>
* fix: resolve location reset issue in bigquery options * fix * fix * fix the test
| Back | FazBrowse Home | New Git URL |
When uploading file-like objects without a specified size, upload in chunks instead of exhausting the stream and keeping the data in-memory.
See #1909