11 lines
234 B
Python
11 lines
234 B
Python
![]() |
"""Tests for redefining builtins."""
|
||
|
from __future__ import print_function
|
||
|
|
||
|
def function():
|
||
|
"""Redefined local."""
|
||
|
type = 1 # [redefined-builtin]
|
||
|
print(type)
|
||
|
|
||
|
# pylint:disable=invalid-name
|
||
|
map = {} # [redefined-builtin]
|