diff options
author | Dmitry Pribysh <dmand@yandex.ru> | 2015-10-18 18:38:06 +0300 |
---|---|---|
committer | Dmitry Pribysh <dmand@yandex.ru> | 2015-10-18 18:38:06 +0300 |
commit | b12c2803500c0b883b3a12b4cfc0b174ac52c4f8 (patch) | |
tree | cec7e8070513571385aefff8c0a8c8fecd449710 /pylint/test/functional/mapping_context_py3.py | |
parent | 5c8335754a164bc8073bc8623a887894fe4e8c24 (diff) | |
parent | 6c6ec4a713118136ccdd9117693078e15fcccbbe (diff) | |
download | pylint-iterable-checker.tar.gz |
Merge with defaultiterable-checker
Diffstat (limited to 'pylint/test/functional/mapping_context_py3.py')
-rw-r--r-- | pylint/test/functional/mapping_context_py3.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pylint/test/functional/mapping_context_py3.py b/pylint/test/functional/mapping_context_py3.py new file mode 100644 index 0000000..042d4d0 --- /dev/null +++ b/pylint/test/functional/mapping_context_py3.py @@ -0,0 +1,19 @@ +# pylint: disable=missing-docstring,invalid-name,too-few-public-methods,no-self-use +from __future__ import print_function + +def test(**kwargs): + print(kwargs) + +# metaclasses as mappings +class Meta(type): + def __getitem__(cls, key): + return ord(key) + + def keys(cls): + return ['a', 'b', 'c'] + +class SomeClass(metaclass=Meta): + pass + +test(**SomeClass) +test(**SomeClass()) # [not-a-mapping] |