Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 617192 Details for
Bug 860406
python-imaging-sane fails to print some option values for a Canon LiDE 110 scanner
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
Small program demonstrating problem (on LiDE 110 scanner)
py_sane_bug.py (text/x-python), 689 bytes, created by
Anders Blomdell
on 2012-09-25 18:33:07 UTC
(
hide
)
Description:
Small program demonstrating problem (on LiDE 110 scanner)
Filename:
MIME Type:
Creator:
Anders Blomdell
Created:
2012-09-25 18:33:07 UTC
Size:
689 bytes
patch
obsolete
>#!/usr/bin/python > >import sane >import _sane > >failures = 0 >sane.init() >devices = sane.get_devices() >for d in devices: > dev = sane.open(d[0]) > for v in dev.opt.values(): > try: > if 'Cur value: <bound' in v.__repr__(): > err = filter(lambda s: s.startswith('Cur value'), > v.__repr__().split('\n')) > print "Wrong value '%s' (%s)" % (v.name, err[0]) > failures = failures + 1 > pass > except AttributeError, e: > print "AttributeError '%s' (%s)" % (v.name, e) > failures = failures + 1 > pass > pass > print "Failures: %d" % failures > pass
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 860406
: 617192 |
617194
|
617220
|
617223