Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for calling named function variables #184

Open
rcoreilly opened this issue Jun 7, 2019 · 0 comments
Open

add support for calling named function variables #184

rcoreilly opened this issue Jun 7, 2019 · 0 comments

Comments

@rcoreilly
Copy link
Contributor

@rcoreilly rcoreilly commented Jun 7, 2019

in _examples/funcs/test.py

# TODO: not currently supported:

# print("funcs.F1()...")
# f1 = funcs.F1()
# print("f1()= %s" % f1())
# 
# print("funcs.F2()...")
# f2 = funcs.F2()
# print("f2()= %s" % f2())
# 
# print("s1 = funcs.S1()...")
# s1 = funcs.S1()
# print("s1.F1 = funcs.F2()...")
# s1.F1 = funcs.F2()
# print("s1.F1() = %s" % s1.F1())
# 
# print("s2 = funcs.S2()...")
# s2 = funcs.S2()
# print("s2.F1 = funcs.F1()...")
# s2.F1 = funcs.F1()
# print("s2.F1() = %s" % s2.F1())

I can't remember at this point what the issue(s) are but presumably there is nothing fundamental from preventing this from working.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
1 participant
You can’t perform that action at this time.