""" LDTP v2 ooldtp init file @author: Eitan Isaacson @copyright: Copyright (c) 2009 Eitan Isaacson @license: LGPL http://ldtp.freedesktop.org This file may be distributed and/or modified under the terms of the GNU Lesser General Public License version 2 as published by the Free Software Foundation. This file is distributed without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. See 'COPYING' in the source distribution for more information. Headers in this file shall remain intact. """ from _context import Context, Component def context(window_name): return Context(window_name) def component(window_name, object_name): return Component(window_name, object_name)