diff options
author | Håkon Vågsether <haakonsv@gmail.com> | 2017-07-24 19:54:26 +0200 |
---|---|---|
committer | Andrej Rode <mail@andrejro.de> | 2018-11-23 00:51:15 +0100 |
commit | bac53b29f7008b33667a7c2c481ace02d73f3264 (patch) | |
tree | 409803943b08f5ff7d85e567c49ab94e6f545174 /grc/core/FlowGraph.py | |
parent | 8dc5fa49dc4c669c28ffb1216625ae92475c4ec9 (diff) |
Add C++ generation
Diffstat (limited to 'grc/core/FlowGraph.py')
-rw-r--r-- | grc/core/FlowGraph.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/core/FlowGraph.py b/grc/core/FlowGraph.py index a47513d314..6786bbee30 100644 --- a/grc/core/FlowGraph.py +++ b/grc/core/FlowGraph.py @@ -64,7 +64,7 @@ class FlowGraph(Element): def imports(self): """ - Get a set of all import statements in this flow graph namespace. + Get a set of all import statements (Python) in this flow graph namespace. Returns: a list of import statements @@ -73,7 +73,7 @@ class FlowGraph(Element): def get_variables(self): """ - Get a list of all variables in this flow graph namespace. + Get a list of all variables (Python) in this flow graph namespace. Exclude parameterized variables. Returns: |