# HG changeset patch # User Paul Boddie # Date 1337377727 -7200 # Node ID be84e10419c4b939156d7c8faac6cc8c66d2d9bb # Parent 6a40dae592c8dabd935bcdbdacb9f335a2ad61d9 Removed Python 3 warning. diff -r 6a40dae592c8 -r be84e10419c4 compiler/__init__.py --- a/compiler/__init__.py Fri May 18 23:39:33 2012 +0200 +++ b/compiler/__init__.py Fri May 18 23:48:47 2012 +0200 @@ -21,11 +21,6 @@ Generates a .pyc file by compiling filename. """ -import warnings - -warnings.warn("The compiler package is deprecated and removed in Python 3.x.", - DeprecationWarning, stacklevel=2) - from compiler.transformer import parse, parseFile from compiler.visitor import walk from compiler.pycodegen import compile, compileFile