summaryrefslogtreecommitdiff
path: root/tests/input/func_nonregr___file___global.py
blob: 910033c4a6eface1aa47b620a5d1c8315faef98f (plain)
1
2
3
4
5
6
7
8
"""test no crash on __file__ global"""

def func():
    """override __file__"""
    global __file__
    __file__ = 'hop'

__revision__ = 'pouet'