foamlib 0.1.14__tar.gz → 0.1.15__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.
- {foamlib-0.1.14 → foamlib-0.1.15}/PKG-INFO +1 -1
- {foamlib-0.1.14 → foamlib-0.1.15}/foamlib/__init__.py +1 -1
- {foamlib-0.1.14 → foamlib-0.1.15}/foamlib/_dictionaries.py +1 -3
- {foamlib-0.1.14 → foamlib-0.1.15}/foamlib.egg-info/PKG-INFO +1 -1
- {foamlib-0.1.14 → foamlib-0.1.15}/LICENSE.txt +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/README.md +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/foamlib/_cases.py +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/foamlib/_subprocesses.py +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/foamlib/py.typed +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/foamlib.egg-info/SOURCES.txt +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/foamlib.egg-info/dependency_links.txt +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/foamlib.egg-info/requires.txt +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/foamlib.egg-info/top_level.txt +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/pyproject.toml +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/setup.cfg +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/tests/test_basic.py +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/tests/test_dictionaries.py +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/tests/test_flange.py +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/tests/test_flange_async.py +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/tests/test_pitz.py +0 -0
- {foamlib-0.1.14 → foamlib-0.1.15}/tests/test_pitz_async.py +0 -0
@@ -286,9 +286,7 @@ class FoamDictionary(MutableMapping[str, Union[FoamValue, "FoamDictionary"]]):
|
|
286
286
|
self._cmd(["-remove"], key=key)
|
287
287
|
|
288
288
|
def __iter__(self) -> Iterator[str]:
|
289
|
-
|
290
|
-
if not key.startswith('"'):
|
291
|
-
yield key
|
289
|
+
yield from self._cmd(["-keywords"]).splitlines()
|
292
290
|
|
293
291
|
def __len__(self) -> int:
|
294
292
|
return len(list(iter(self)))
|
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
|