We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
from p5 import * File "/Users/arihantparsoya/Documents/p5/p5/__init__.py", line 19, in <module> from .sketch import * File "/Users/arihantparsoya/Documents/p5/p5/sketch/__init__.py", line 19, in <module> from .base import * File "/Users/arihantparsoya/Documents/p5/p5/sketch/base.py", line 29, in <module> from ..opengl import renderer File "/Users/arihantparsoya/Documents/p5/p5/opengl/__init__.py", line 19, in <module> from .renderer import * File "/Users/arihantparsoya/Documents/p5/p5/opengl/renderer.py", line 33, in <module> from ..pmath import matrix File "/Users/arihantparsoya/Documents/p5/p5/pmath/__init__.py", line 22, in <module> from .curves import * File "/Users/arihantparsoya/Documents/p5/p5/pmath/curves.py", line 46 ret_value = func(*new_args, parameter, **kwargs) ^ SyntaxError: only named arguments may follow *expression
If tuple unpacking is something we really need we'll have to make Py3.5 a dependency, else we figure out a way to make this backwards compatible.
See #18 and #22 for more context. Also: thanks @parsoyaarihant for pointing this out!
The text was updated successfully, but these errors were encountered:
fix bug p5py#23: Tuple unpacking incompatible with Python 3.4 and less
ac19dae
No branches or pull requests
If tuple unpacking is something we really need we'll have to make Py3.5 a dependency, else we figure out a way to make this backwards compatible.
See #18 and #22 for more context. Also: thanks @parsoyaarihant for pointing this out!
The text was updated successfully, but these errors were encountered: