diff options
author | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2008-03-30 19:25:58 +0200 |
---|---|---|
committer | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2008-03-30 19:25:58 +0200 |
commit | 6b636000eceef3ac91a3fa40911291a95b73244f (patch) | |
tree | b8b24ee94a64ef323c764b934dbc99b1be167160 /nodes.py | |
parent | df7e6961f4887e58d9eb957a556868f095db9017 (diff) | |
download | astroid-git-6b636000eceef3ac91a3fa40911291a95b73244f.tar.gz |
_ast compat step 1
--HG--
branch : _ast_compat
Diffstat (limited to 'nodes.py')
-rw-r--r-- | nodes.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ __docformat__ = "restructuredtext en" try: from logilab.astng._nodes_ast import * AST_MODE = '_ast' -except: +except ImportError: from logilab.astng._nodes_compiler import * AST_MODE = 'compiler' |