elements 3.9.2__tar.gz → 3.9.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {elements-3.9.2/elements.egg-info → elements-3.9.3}/PKG-INFO +1 -1
- {elements-3.9.2 → elements-3.9.3}/elements/__init__.py +1 -1
- {elements-3.9.2 → elements-3.9.3}/elements/path.py +2 -2
- {elements-3.9.2 → elements-3.9.3/elements.egg-info}/PKG-INFO +1 -1
- {elements-3.9.2 → elements-3.9.3}/LICENSE +0 -0
- {elements-3.9.2 → elements-3.9.3}/MANIFEST.in +0 -0
- {elements-3.9.2 → elements-3.9.3}/README.md +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/agg.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/checkpoint.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/config.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/counter.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/flags.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/fps.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/logger.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/plotting.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/printing.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/rwlock.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/space.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/timer.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/tree.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/usage.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/utils.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/uuid.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements/when.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements.egg-info/SOURCES.txt +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements.egg-info/dependency_links.txt +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements.egg-info/requires.txt +0 -0
- {elements-3.9.2 → elements-3.9.3}/elements.egg-info/top_level.txt +0 -0
- {elements-3.9.2 → elements-3.9.3}/requirements-optional.txt +0 -0
- {elements-3.9.2 → elements-3.9.3}/requirements.txt +0 -0
- {elements-3.9.2 → elements-3.9.3}/setup.cfg +0 -0
- {elements-3.9.2 → elements-3.9.3}/setup.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/tests/test_basics.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/tests/test_checkpoint.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/tests/test_flags.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/tests/test_path.py +0 -0
- {elements-3.9.2 → elements-3.9.3}/tests/test_tree.py +0 -0
|
@@ -282,9 +282,9 @@ class GCSPath(Path):
|
|
|
282
282
|
def open(self, mode='r'):
|
|
283
283
|
assert self.blob, 'is a directory'
|
|
284
284
|
if 'w' in mode:
|
|
285
|
-
return self.blob.open(mode,
|
|
285
|
+
return self.blob.open(mode, ignore_flush=True)
|
|
286
286
|
else:
|
|
287
|
-
return self.blob.open(mode
|
|
287
|
+
return self.blob.open(mode)
|
|
288
288
|
|
|
289
289
|
def read(self, mode='r'):
|
|
290
290
|
assert self.blob, 'is a directory'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|