-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
if value == '??' or value == '?0' :
should be
if '?' in value:
This allows (no parsing errors) on some of the signatures that look for various
combinations of don't cares.
Original issue reported on code.google.com by [email protected] on 3 Dec 2014 at 10:47