[PATCH] D61549: Fix use of 'is' operator for comparison

2020-02-29 Thread Jens Carl via Phabricator via cfe-commits
j-carl added a comment. In D61549#1785369 , @Jim wrote: > @j-carl Could you give a Python 3.8 syntax reference for this change. As @tambre mentioned it's not a language change, but information about the change can be found here

[PATCH] D61549: Fix use of 'is' operator for comparison

2019-12-16 Thread Raul Tambre via Phabricator via cfe-commits
tambre added a comment. In D61549#1785369 , @Jim wrote: > @j-carl Could you give a Python 3.8 syntax reference for this change. This is not a language change in Python 3.8. AFAICT, the behaviour of `is` has been the same as long as Python has been in

[PATCH] D61549: Fix use of 'is' operator for comparison

2019-12-16 Thread Jim Lin via Phabricator via cfe-commits
Jim added a comment. @j-carl Could you give a Python 3.8 syntax reference for this change. Repository: rC Clang CHANGES SINCE LAST ACTION https://reviews.llvm.org/D61549/new/ https://reviews.llvm.org/D61549 ___ cfe-commits mailing list

[PATCH] D61549: Fix use of 'is' operator for comparison

2019-11-16 Thread Jens Carl via Phabricator via cfe-commits
j-carl added a comment. Gentle ping ... ArchLinux update to Python 3.8 and it's not possible to use clang-format.py from vim anymore. Thanks Repository: rC Clang CHANGES SINCE LAST ACTION https://reviews.llvm.org/D61549/new/ https://reviews.llvm.org/D61549

[PATCH] D61549: Fix use of 'is' operator for comparison

2019-05-04 Thread Raul Tambre via Phabricator via cfe-commits
tambre created this revision. tambre added a reviewer: rsmith. Herald added a project: clang. Herald added a subscriber: cfe-commits. The 'is' operator is not meant to be used for comparisons. It currently working is an implementation detail of CPython. CPython 3.8 has added a SyntaxWarning for