summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2003-07-28 18:26:38 +0000
committercliechti <cliechti@f19166aa-fa4f-0410-85c2-fa1106f25c8a>2003-07-28 18:26:38 +0000
commit7664b78b1f2b60fceb7768d50a476d2bd50f35e9 (patch)
treea6d4b93cad7c2e8965097f09b0f5847a0cb68cfc
parentf622fafe7eb2acf6e21fc715ca9999a55dc5c492 (diff)
downloadpyserial-git-7664b78b1f2b60fceb7768d50a476d2bd50f35e9.tar.gz
removed mac comment - no parallelports there...
-rw-r--r--pyparallel/parallel/__init__.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/pyparallel/parallel/__init__.py b/pyparallel/parallel/__init__.py
index 7b967f9..6eda881 100644
--- a/pyparallel/parallel/__init__.py
+++ b/pyparallel/parallel/__init__.py
@@ -6,7 +6,7 @@
# this is distributed under a free software license, see license.txt
import sys, os, string
-VERSION = string.split("$Revision: 1.3 $")[1] #extract CVS version
+VERSION = string.split("$Revision: 1.4 $")[1] #extract CVS version
#chose an implementation, depending on os
if os.name == 'nt':
@@ -20,5 +20,3 @@ elif os.name == 'java':
from paralleljava import *
else:
raise "Sorry no implementation for your platform available."
-
-#no "mac" implementation. someone want's to write it? i have no access to a mac.