ezag / pyeuclid

2D and 3D maths module for Python
97 stars 41 forks source link

Syntax error in Python 3.4 egg #11

Closed robclewley closed 7 years ago

robclewley commented 9 years ago

In the version currently available from PyPI:

euclid.py: line 137 raise AttributeError, name is an invalid way to raise an exception in Python 3. Should be raise AttributeError(name) as it is in the current repo version. Haven't checked for other occurrences of this, but this is the first that comes up when trying to import.

Can the PyPI version be refreshed?

ezag commented 7 years ago

Duplicate of #8