ruff/crates/ruff_linter/resources/test/fixtures/pyflakes/F821_25.py

6 lines
126 B
Python

"""Test for attribute accesses on builtins."""
a = type({}).__dict__['fromkeys']
b = dict.__dict__['fromkeys']
assert a is b