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
I am using cldoc with python 3.5.2, ran into some errors and fixed them one by one.
tokens.next() => next(tokens)
from namespace import Namespace
def cmp(a, b): return (a > b) - (a < b)
The text was updated successfully, but these errors were encountered:
With Python 3.7: Using tokens.__next__() seems to work and I only changed that, didn't have to do additional steps @csfreebird had to do.
tokens.__next__()
Update: nevermind, I got the message much later, I guess we do need the 2 and 3 also. 👍 @csfreebird
Sorry, something went wrong.
No branches or pull requests
I am using cldoc with python 3.5.2, ran into some errors and fixed them one by one.
tokens.next() => next(tokens)
comment out line 102:
from namespace import Namespace
The text was updated successfully, but these errors were encountered: