This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
multipub/.pyenv/lib/python3.7/site-packages/pylint/test/functional/redefined_builtin.py

12 lines
260 B
Python
Raw Normal View History

2019-02-09 02:45:25 -06:00
"""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]
__doc__ = 'reset the doc'