summaryrefslogtreecommitdiff
path: root/pyparallel/parallel/__init__.py
diff options
context:
space:
mode:
authornobody <nobody@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2005-08-12 21:04:45 +0000
committernobody <nobody@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2005-08-12 21:04:45 +0000
commit36ab591ec76b0afe06072fb75ad84f2f43f0600a (patch)
tree09e4e63b0c287c61ed20e82169125e2829166ed9 /pyparallel/parallel/__init__.py
parent3e57b3d3ab38509270fb61808494cd485dd10fee (diff)
downloadpyserial-git-36ab591ec76b0afe06072fb75ad84f2f43f0600a.tar.gz
This commit was manufactured by cvs2svn to create tag 'release2_2'.release2_2
Diffstat (limited to 'pyparallel/parallel/__init__.py')
-rw-r--r--pyparallel/parallel/__init__.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/pyparallel/parallel/__init__.py b/pyparallel/parallel/__init__.py
deleted file mode 100644
index 6eda881..0000000
--- a/pyparallel/parallel/__init__.py
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env python
-#portable parallel port access with python
-#this is a wrapper module for different platform implementations
-#
-# (C)2001-2002 Chris Liechti <cliechti@gmx.net>
-# this is distributed under a free software license, see license.txt
-
-import sys, os, string
-VERSION = string.split("$Revision: 1.4 $")[1] #extract CVS version
-
-#chose an implementation, depending on os
-if os.name == 'nt':
- from parallelwin32 import *
-elif os.name == 'posix':
- if sys.platform == 'linux2':
- from parallelppdev import * #linux, kernel 2.4
- else:
- from parallelioctl import * #IOCTLs
-elif os.name == 'java':
- from paralleljava import *
-else:
- raise "Sorry no implementation for your platform available."