diff options
Diffstat (limited to 'inference.py')
-rw-r--r-- | inference.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/inference.py b/inference.py index 27c2aa42..edc71839 100644 --- a/inference.py +++ b/inference.py @@ -20,18 +20,11 @@ """this module contains a set of functions to handle inference on astng trees """ -from __future__ import generators - __doctype__ = "restructuredtext en" from itertools import chain import sys -try: - GeneratorExit # introduced in py2.5 -except NameError: - class GeneratorExit(Exception): pass - from logilab.astng import nodes from logilab.astng.manager import ASTNGManager |