Update python/ql/test/experimental/dataflow/coverage/classes.py

Co-authored-by: Taus <tausbn@github.com>
This commit is contained in:
yoff
2020-08-14 10:53:10 +02:00
committed by GitHub
parent dd4d00293d
commit 4b336e9b01

View File

@@ -1,5 +1,5 @@
# User-defined methods, both instance methods and class methods, can be called in many non-standard ways
# i.e. differently from simply `c.f()` or `C.f()`. For example, a user-defined `__await__` function on a
# i.e. differently from simply `c.f()` or `C.f()`. For example, a user-defined `__await__` method on a
# class `C` will be called by the syntactic construct `await c` when `c` is an instance of `C`.
#
# These tests should cover all the class calls that we hope to support.