summaryrefslogtreecommitdiff
path: root/tests/functional/pragma_after_backslash.py
blob: c506f6c9da46a73f29cfcd1f40651f091a58b604 (plain)
1
2
3
4
5
6
7
8
9
10
"""Test that a pragma has an effect when separated by a backslash."""
# pylint: disable=too-few-public-methods

class Foo:
    """block-disable test"""

    def meth3(self):
        """test one line disabling"""
        print(self.bla) \
           # pylint: disable=E1101