Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #46503 > unrolled thread

Re: The state of pySerial

Started byMRAB <python@mrabarnett.plus.com>
First post2013-05-30 16:45 +0100
Last post2013-05-30 16:45 +0100
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: The state of pySerial MRAB <python@mrabarnett.plus.com> - 2013-05-30 16:45 +0100

#46503 — Re: The state of pySerial

FromMRAB <python@mrabarnett.plus.com>
Date2013-05-30 16:45 +0100
SubjectRe: The state of pySerial
Message-ID<mailman.2427.1369928704.3114.python-list@python.org>
On 30/05/2013 02:32, Ma Xiaojun wrote:
> I've already mailed the author, waiting for reply.
>
> For Windows people, downloading a exe get you pySerial 2.5, which
> list_ports and miniterm feature seems not included. To use 2.6,
> download the tar.gz and use standard "setup.py install" to install it
> (assume you have .py associated) . There is no C compiling involved in
> the installation process.
>
> For whether Python 3.3 is supported or not. I observed something like:
> http://paste.ubuntu.com/5715275/ .
>
> miniterm works for Python 3.3 at this time.
>
The problem there is that 'desc' is a bytestring, but the regex pattern
can match only a Unicode string (Python 3 doesn't let you mix
bytestrings and Unicode string like a Python 2).

The simplest fix would probably be to decode 'desc' to Unicode.

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web