blob: fa9f1c2bd1de72ae5c5dec0a3613731c31e8db73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/python2.4
#
# Copyright 2007 Google Inc. All Rights Reserved.
"""Imports a set of drivers appropriate to the current OS."""
__author__ = 'jhaas@google.com (Jonathan Haas)'
import sys
platform_dir = sys.platform
keyboard = __import__(platform_dir+".keyboard", globals(), locals(), [''])
mouse = __import__(platform_dir+".mouse", globals(), locals(), [''])
windowing = __import__(platform_dir+".windowing", globals(), locals(), [''])
|