From: <lu...@us...> - 2011-07-01 13:17:20
|
Revision: 535 http://pyscard.svn.sourceforge.net/pyscard/?rev=535&view=rev Author: ludov Date: 2011-07-01 13:17:14 +0000 (Fri, 01 Jul 2011) Log Message: ----------- PEP8: E303 too many blank lines (2) Modified Paths: -------------- trunk/pyscard/src/smartcard/pcsc/PCSCCardRequest.py Modified: trunk/pyscard/src/smartcard/pcsc/PCSCCardRequest.py =================================================================== --- trunk/pyscard/src/smartcard/pcsc/PCSCCardRequest.py 2011-07-01 13:15:52 UTC (rev 534) +++ trunk/pyscard/src/smartcard/pcsc/PCSCCardRequest.py 2011-07-01 13:17:14 UTC (rev 535) @@ -106,7 +106,6 @@ AbstractCardRequest.waitforcard(self) cardfound = False - # for non infinite timeout, a timer will signal the end of the time-out by setting the evt event evt = threading.Event() if INFINITE == self.timeout: @@ -212,7 +211,6 @@ readername, eventstate, atr = state r, oldstate = readerstates[readername] - # the status can change on a card already inserted, e.g. # unpowered, in use, ... # if a new card is requested, clear the state changed bit if @@ -279,7 +277,6 @@ hresult = 0 newstates = [] - # time-out if SCARD_E_TIMEOUT == hresult: if evt.isSet(): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |