3ad8476fc5d3ceb0f511fce7b295d0673aa2c7ab
[platform/core/uifw/at-spi2-atk.git] / pyatspi / __init__.py
1 #Copyright (C) 2008 Codethink Ltd
2
3 #This library is free software; you can redistribute it and/or
4 #modify it under the terms of the GNU Lesser General Public
5 #License version 2 as published by the Free Software Foundation.
6
7 #This program is distributed in the hope that it will be useful,
8 #but WITHOUT ANY WARRANTY; without even the implied warranty of
9 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10 #GNU General Public License for more details.
11 #You should have received a copy of the GNU Lesser General Public License
12 #along with this program; if not, write to the Free Software
13 #Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
14
15 __version__ = (1, 9, 0)
16
17 import registry
18 Registry = registry._Registry()
19 registry._Registry = Registry
20 del registry
21
22 import constants
23 from Accessibility import *
24
25 #This is a re-creation of the namespace pollution implemented
26 #by PyORBit.
27 import sys
28 import Accessibility
29 sys.modules['Accessibility'] = Accessibility
30 del sys