Fix TestImport.py to work with Python 3.5.

Differential Revision: http://reviews.llvm.org/D16431

llvm-svn: 258448
This commit is contained in:
Adrian McCarthy 2016-01-21 23:07:48 +00:00
parent 259d71a464
commit 524afae807
1 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
import TPunitA
import TPunitB
from __future__ import absolute_import
from . import TPunitA
from . import TPunitB
def __lldb_init_module(debugger,*args):
debugger.HandleCommand("command script add -f thepackage.TPunitA.command TPcommandA")