|
|
|
|
|
by eeadc
4656 days ago
|
|
That library is in many ways deprecated and broken: At first, it uses only old-style classes because it doesn't inherits object explicitly. Furthermore, it uses print in a method; it would be more "Pythonic" to return a str object, which was formatted using str.format. I think the future is Python 3, and new implementations in Python 2 syntax are simply unneccessary. I would suggest the usage of Python-3-style syntax, which is also valid in Python 2.7 (which isn't hard). |
|
Please explain this further.
> usage of Python-3-style syntax, which is also valid in Python 2.7
Will do this