Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: dfad352267cee3ea581035622a7371bc3b235378 authored by Ned Deily on 12 June 2018, 04:46:50 UTC
3.7.0rc1
Tip revision: dfad352
bad_getattr2.py
def __getattr__():
    "Bad one"

x = 1

def __dir__(bad_sig):
    return []
back to top