From: <lu...@us...> - 2010-03-17 19:34:43
|
Revision: 386 http://pyscard.svn.sourceforge.net/pyscard/?rev=386&view=rev Author: ludov Date: 2010-03-17 19:34:37 +0000 (Wed, 17 Mar 2010) Log Message: ----------- also use parseATR.match_atr() to find a card description Modified Paths: -------------- trunk/contrib/parseATR/stress_test.py Modified: trunk/contrib/parseATR/stress_test.py =================================================================== --- trunk/contrib/parseATR/stress_test.py 2010-03-17 19:32:16 UTC (rev 385) +++ trunk/contrib/parseATR/stress_test.py 2010-03-17 19:34:37 UTC (rev 386) @@ -46,5 +46,10 @@ print e else: print txt + card = parseATR.match_atr(atr) + if card: + print "Possibly identified card:", "\n\t".join(card) + else: + print "Unknown card" print This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |