laywerrobot/lib/python3.6/site-packages/astor/codegen.py
2020-08-27 21:55:39 +02:00

11 lines
204 B
Python

import warnings
from .code_gen import * # NOQA
warnings.warn(
'astor.codegen module is deprecated. Please import '
'astor.code_gen module instead.',
DeprecationWarning,
stacklevel=2
)