-
Notifications
You must be signed in to change notification settings - Fork 387
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
Python 3.8 support #607
Comments
For the record, I was on kazoo 2.0 and 2.7 compiles without reserved keywords. I did not test the functionalities at run time yet. |
This was referenced May 9, 2020
arrdem
added a commit
to arrdem/kazoo
that referenced
this issue
May 17, 2020
As of Python 3.8, "is" with a literal is a syntax warning because of the confusion between equality and instance identity it represents. Issue python-zk#607
arrdem
added a commit
to arrdem/kazoo
that referenced
this issue
May 17, 2020
As of Python 3.8, "is" with a literal is a syntax warning because of the confusion between equality and instance identity it represents. Issue python-zk#607
StephenSorriaux
pushed a commit
that referenced
this issue
May 18, 2020
As of Python 3.8, "is" with a literal is a syntax warning because of the confusion between equality and instance identity it represents. Issue #607
Hello, Kazoo officially supports Python 3.8. The current Kazoo version (2.7.0) would display a warning that was fixed in #609 and it will be integrated in the next Kazoo release. |
Great to know! Adding 3.8 to https://pypi.org/project/kazoo/ would document it well |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I could not find an issue about it.
async
is a reserved keyword now and will conflict, e.g. https://docs.python.org/3/reference/compound_stmts.html#async-defThe text was updated successfully, but these errors were encountered: