scrall 0.8.6__tar.gz → 0.8.7__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.
Potentially problematic release.
This version of scrall might be problematic. Click here for more details.
- {scrall-0.8.6/src/scrall.egg-info → scrall-0.8.7}/PKG-INFO +1 -1
- {scrall-0.8.6 → scrall-0.8.7}/pyproject.toml +1 -1
- scrall-0.8.7/src/scrall/__init__.py +1 -0
- {scrall-0.8.6 → scrall-0.8.7}/src/scrall/parse/visitor.py +1 -1
- {scrall-0.8.6 → scrall-0.8.7/src/scrall.egg-info}/PKG-INFO +1 -1
- scrall-0.8.6/src/scrall/__init__.py +0 -1
- {scrall-0.8.6 → scrall-0.8.7}/LICENSE +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/MANIFEST.in +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/README.md +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/setup.cfg +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/src/scrall/__main__.py +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/src/scrall/exceptions.py +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/src/scrall/log.conf +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/src/scrall/parse/__init__.py +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/src/scrall/parse/parser.py +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/src/scrall/parse/scrall.peg +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/src/scrall.egg-info/SOURCES.txt +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/src/scrall.egg-info/dependency_links.txt +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/src/scrall.egg-info/entry_points.txt +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/src/scrall.egg-info/requires.txt +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/src/scrall.egg-info/top_level.txt +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/tests/test_delete.py +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/tests/test_ping_actions.py +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/tests/test_selection.py +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/tests/test_signals.py +0 -0
- {scrall-0.8.6 → scrall-0.8.7}/tests/test_state_actions.py +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "scrall"
|
|
7
|
-
version = "0.8.
|
|
7
|
+
version = "0.8.7"
|
|
8
8
|
description = "Starr's Concise Relational Action Language - For Shlaer-Mellor Executable UML"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [{ name = "Leon Starr", email = "leon_starr@modelint.com" }]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
version = "0.8.7"
|
|
@@ -1008,7 +1008,7 @@ class ScrallVisitor(PTNodeVisitor):
|
|
|
1008
1008
|
_logger.info(f" < {children}")
|
|
1009
1009
|
a = children.results.get('attr_init')
|
|
1010
1010
|
r = children.results.get('to_ref')
|
|
1011
|
-
result = New_inst_a(cname=children[0], attrs=a[0] if a else [], rels=None if not r else r
|
|
1011
|
+
result = New_inst_a(cname=children[0], attrs=a[0] if a else [], rels=None if not r else r)
|
|
1012
1012
|
_logger.info(f" > {result}")
|
|
1013
1013
|
return result
|
|
1014
1014
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
version = "0.8.6"
|
|
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
|