blob: 88fb27317ca2c207b42175d4741f422c9014e0c6 [file] [log] [blame]
# This module contains functions that *will be allowed* by dynamo
import functools
def is_compiling() -> bool:
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