[Python-checkins] cpython (3.5): Issue 26911: fix import (other problems remain).

terry.reedy python-checkins at python.org
Fri May 6 15:58:28 EDT 2016


https://hg.python.org/cpython/rev/3279c910d0e0
changeset:   101238:3279c910d0e0
branch:      3.5
parent:      101231:580ddeccd689
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Fri May 06 15:57:57 2016 -0400
summary:
  Issue 26911: fix import (other problems remain).

files:
  Lib/lib2to3/tests/pytree_idempotency.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/lib2to3/tests/pytree_idempotency.py b/Lib/lib2to3/tests/pytree_idempotency.py
--- a/Lib/lib2to3/tests/pytree_idempotency.py
+++ b/Lib/lib2to3/tests/pytree_idempotency.py
@@ -18,8 +18,8 @@
 
 # Local imports
 from .. import pytree
-import pgen2
-from pgen2 import driver
+from .. import pgen2
+from ..pgen2 import driver
 
 logging.basicConfig()
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list