diff options
author | Frederic Leger | 2013-01-16 08:34:18 +0000 |
---|---|---|
committer | Anton Leherbauer | 2013-01-16 08:34:18 +0000 |
commit | 7997d52dc1d0e5a24de734a80016c65329cc9149 (patch) | |
tree | fe155ca75d2b22b3789737c82e696f45d61807fd /python/src/tcf/tests | |
parent | 61435e0455753f81c20f42b9eef51f925da293ba (diff) | |
download | org.eclipse.tcf-7997d52dc1d0e5a24de734a80016c65329cc9149.tar.gz org.eclipse.tcf-7997d52dc1d0e5a24de734a80016c65329cc9149.tar.xz org.eclipse.tcf-7997d52dc1d0e5a24de734a80016c65329cc9149.zip |
TCF Python: Bug 397827 - Use relative imports inside tcf package modules
Diffstat (limited to 'python/src/tcf/tests')
-rw-r--r-- | python/src/tcf/tests/BasicTests.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/src/tcf/tests/BasicTests.py b/python/src/tcf/tests/BasicTests.py index 338b104a8..2e4624224 100644 --- a/python/src/tcf/tests/BasicTests.py +++ b/python/src/tcf/tests/BasicTests.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# * Copyright (c) 2011 Wind River Systems, Inc. and others. +# * Copyright (c) 2011, 2013 Wind River Systems, Inc. and others. # * All rights reserved. This program and the accompanying materials # * are made available under the terms of the Eclipse Public License v1.0 # * which accompanies this distribution, and is available at @@ -14,6 +14,7 @@ import time import threading import atexit import tcf + from tcf import protocol, channel, errors from tcf.util import sync @@ -40,7 +41,7 @@ def test(): global _services protocol.startEventQueue() atexit.register(protocol.getEventQueue().shutdown) - #testTimer() + # testTimer() try: c = tcf.connect("TCP:127.0.0.1:1534") except Exception as e: |