Skip to content

Commit 8b9abcf

Browse files
authored
Revert "feat: Add "transfer_manager" module for concurrent uploads and downloads as a preview feature (#844)" (#897)
This reverts commit 9dcc684.
1 parent 9ccdc5f commit 8b9abcf

File tree

5 files changed

+2
-1007
lines changed

5 files changed

+2
-1007
lines changed

google/cloud/storage/constants.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
1514
"""Constants used across google.cloud.storage modules."""
1615

1716
# Storage classes

google/cloud/storage/fileio.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
"""Module for file-like access of blobs, usually invoked via Blob.open()."""
15+
"""Support for file-like I/O."""
1616

1717
import io
1818
import warnings
@@ -101,12 +101,10 @@ class BlobReader(io.BufferedIOBase):
101101
- ``if_metageneration_match``
102102
- ``if_metageneration_not_match``
103103
- ``timeout``
104-
105-
Note that download_kwargs are also applied to blob.reload(), if a reload
106-
is needed during seek().
107104
"""
108105

109106
def __init__(self, blob, chunk_size=None, retry=DEFAULT_RETRY, **download_kwargs):
107+
"""docstring note that download_kwargs also used for reload()"""
110108
for kwarg in download_kwargs:
111109
if kwarg not in VALID_DOWNLOAD_KWARGS:
112110
raise ValueError(

0 commit comments

Comments
 (0)