blob: 149d3f76eaec01a9ada3f9add6a4400c120306f5 [file] [log] [blame]
# This module contains functions that *will be allowed* by dynamo
import functools
def is_compiling():
return False
def wrap_inline(fn):
"""
Create an extra frame around fn that is not in skipfiles
"""
@functools.wraps(fn)
def inner(*args, **kwargs):
return fn(*args, **kwargs)
return inner