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

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

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 are based on the first part of https://docs.python.org/3/reference/datamodel.html.