summaryrefslogtreecommitdiff
path: root/pyserial/README.txt
diff options
context:
space:
mode:
Diffstat (limited to 'pyserial/README.txt')
-rw-r--r--pyserial/README.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/pyserial/README.txt b/pyserial/README.txt
index b476eb3..d29bbd6 100644
--- a/pyserial/README.txt
+++ b/pyserial/README.txt
@@ -209,6 +209,17 @@ Tips & Tricks
some platforms. Look at the tools from Roger Binns:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/bitpim/comscan/
+- When packagin a project with py2exe, it will likely print a warning about
+ missing modules 'javax.comm'. This warning is uncritical as the module is
+ used in the Jython implementation that is not used but packaged.
+
+ It can be avoided with:
+ setup(...
+ options = {'py2exe': {'excludes': ['javax.comm']}})
+
+ See also setup_demo.py in the examples.
+
+
References
----------
- Python: http://www.python.org