12 lines
204 B
Python
12 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
|
||
|
)
|