foamlib 0.3.12__tar.gz → 0.3.13__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.3.12 → foamlib-0.3.13}/PKG-INFO +1 -1
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib/__init__.py +1 -1
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib/_files/_parsing.py +1 -1
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib.egg-info/PKG-INFO +1 -1
- {foamlib-0.3.12 → foamlib-0.3.13}/LICENSE.txt +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/README.md +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib/_cases/__init__.py +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib/_cases/_async.py +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib/_cases/_base.py +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib/_cases/_sync.py +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib/_files/__init__.py +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib/_files/_base.py +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib/_files/_files.py +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib/_files/_io.py +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib/_files/_serialization.py +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib/_util.py +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib/py.typed +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib.egg-info/SOURCES.txt +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib.egg-info/dependency_links.txt +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib.egg-info/requires.txt +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/foamlib.egg-info/top_level.txt +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/pyproject.toml +0 -0
- {foamlib-0.3.12 → foamlib-0.3.13}/setup.cfg +0 -0
@@ -134,7 +134,7 @@ _DIMENSIONS = (
|
|
134
134
|
Literal("[").suppress() + common.number * 7 + Literal("]").suppress()
|
135
135
|
).set_parse_action(lambda tks: FoamDict.DimensionSet(*tks))
|
136
136
|
_TENSOR = _list_of(common.number) | common.number
|
137
|
-
_IDENTIFIER = Word(identchars + "$", printables, exclude_chars=";")
|
137
|
+
_IDENTIFIER = Word(identchars + "$", printables, exclude_chars="{;}")
|
138
138
|
_DIMENSIONED = (Opt(_IDENTIFIER) + _DIMENSIONS + _TENSOR).set_parse_action(
|
139
139
|
lambda tks: FoamDict.Dimensioned(*reversed(tks.as_list()))
|
140
140
|
)
|
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
|