Skip to content

Commit

Permalink
Updated to support python3 (experimental). Works on Mac.
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Henstell committed Dec 15, 2014
1 parent ea1b7fa commit 1c3e450
Show file tree
Hide file tree
Showing 42 changed files with 1,468 additions and 1,461 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ build
dist
pyserial.egg-info
.sconsign.dblite
*.bak
8 changes: 4 additions & 4 deletions documentation/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
master_doc = 'index'

# General information about the project.
project = u'pySerial'
copyright = u'2001-2010, Chris Liechti'
project = 'pySerial'
copyright = '2001-2010, Chris Liechti'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -172,8 +172,8 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'pySerial.tex', u'pySerial Documentation',
u'Chris Liechti', 'manual'),
('index', 'pySerial.tex', 'pySerial Documentation',
'Chris Liechti', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down
4 changes: 2 additions & 2 deletions examples/enhancedserial.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ def readlines(self, sizehint=None, timeout=1):
#write out some test data lines
s.write('\n'.join("hello how are you".split()))
#and read them back
print s.readlines()
print(s.readlines())
#this one should print an empty list
print s.readlines(timeout=0.4)
print(s.readlines(timeout=0.4))
Loading

0 comments on commit 1c3e450

Please sign in to comment.