summaryrefslogtreecommitdiff
path: root/test/functional/redefined_builtin.py
blob: c41d06dfcfcc224fbbb73a6d8fb363bfafdc1720 (plain)
1
2
3
4
5
6
7
8
9
"""Tests for redefining builtins."""

def function():
    """Redefined local."""
    type = 1  # [redefined-builtin]
    print type  # pylint: disable=print-statement

# pylint:disable=invalid-name
map = {}  # [redefined-builtin]