File: codegen.py

package info (click to toggle)
python-astor 0.8.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 304 kB
  • sloc: python: 2,348; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 204 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
import warnings

from .code_gen import *  # NOQA


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