mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
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
|
|
)
|