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

Sign3 #227

Merged
merged 2 commits into from
Nov 18, 2022
Merged

Sign3 #227

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion vpython/test/test_namespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,11 @@
'version',
'vertex',
'winput',
'wtext'
'wtext',
'wtext',
'winput',
'keysdown',
'sign'
]


Expand Down
2 changes: 1 addition & 1 deletion vpython/vpython.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def Exit():
'local_light', 'menu', 'meta_canvas', 'points', 'pyramid',
'quad', 'radio', 'ring', 'set_browser', 'simple_sphere', 'sleep', 'slider', 'sphere',
'standardAttributes', 'text', 'textures', 'triangle', 'vertex',
'wtext', 'winput', 'keysdown']
'wtext', 'winput', 'keysdown', 'sign']


from inspect import signature # Python 3; needed to allow zero arguments in a bound function
Expand Down