codegen.py 204 B

1234567891011
  1. import warnings
  2. from .code_gen import * # NOQA
  3. warnings.warn(
  4. 'astor.codegen module is deprecated. Please import '
  5. 'astor.code_gen module instead.',
  6. DeprecationWarning,
  7. stacklevel=2
  8. )