Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
Printrun
Commits
2d62d11b
Commit
2d62d11b
authored
Jul 16, 2013
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Gracefully handle EAGAIN in readline (#406)
parent
645df835
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
printcore.py
printcore.py
+3
-1
No files found.
printcore.py
View file @
2d62d11b
...
...
@@ -20,7 +20,7 @@ from select import error as SelectError
from
threading
import
Thread
,
Lock
from
Queue
import
Queue
,
Empty
as
QueueEmpty
import
time
,
getopt
,
sys
import
platform
,
os
,
traceback
import
platform
,
os
,
traceback
,
errno
import
socket
import
re
from
functools
import
wraps
...
...
@@ -211,6 +211,8 @@ class printcore():
print
"Can't read from printer (disconnected?) (Socket error {0}): {1}"
.
format
(
e
.
errno
,
e
.
strerror
)
return
None
except
OSError
as
e
:
if
e
.
errno
==
errno
.
EAGAIN
:
# Not a real error, no data was available
return
""
print
"Can't read from printer (disconnected?) (OS Error {0}): {1}"
.
format
(
e
.
errno
,
e
.
strerror
)
return
None
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment