VirtualBox

忽略:
時間撮記:
2017-3-7 上午10:54:16 (8 年 以前)
作者:
vboxsync
訊息:

ValidationKit/testdriver: pylint 2.0.0 fixes.

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/ValidationKit/testdriver/reporter.py

    r65857 r65967  
    325325
    326326        # Flush buffers when reaching the last test.
    327         if len(self.atTests) == 0:
     327        if not self.atTests:
    328328            self.xmlFlush(fRetry = True);
    329329
     
    344344        Returns True if no open tests, False if there were open tests.
    345345        """
    346         if len(self.atTests) == 0:
     346        if not self.atTests:
    347347            return True;
    348348        for _ in range(len(self.atTests)):
     
    450450        if self.oXmlFile is not None:
    451451            # pop the test stack
    452             while len(self.atTests) > 0:
     452            while self.atTests:
    453453                sName, cErrorsStart, self.fTimedOut = self.atTests.pop();
    454454                self._xmlWrite([ '<End timestamp="%s" errors="%d"/>' % (sTsIso, self.cErrors - cErrorsStart,),
     
    538538                        self.log(0, 'error writing %s: %s' % (sDstFilename, oXcpt), sCaller, sTsPrf);
    539539                    else:
    540                         if len(abBuf) > 0:
     540                        if abBuf:
    541541                            continue;
    542542                break;
     
    693693    def __del__(self):
    694694        """Flush pending log messages?"""
    695         if len(self._asXml) > 0:
     695        if self._asXml:
    696696            self._xmlDoFlush(self._asXml, fRetry = True, fDtor = True);
    697697
     
    955955            asXml = self._asXml;
    956956            self._asXml = [];
    957             if len(asXml) > 0  or fForce is True:
     957            if asXml or fForce is True:
    958958                self._fXmlFlushing = True;
    959959
     
    10301030
    10311031    def doPollWork(self, sDebug = None):
    1032         if len(self._asXml) > 0:
     1032        if self._asXml:
    10331033            g_oLock.acquire();
    10341034            try:
     
    10831083                    g_oReporter.log(0, '** internal-error: Hit exception #2! %s' % (traceback.format_exc()), sCaller, sTsPrf);
    10841084
    1085                 if len(asInfo) > 0:
     1085                if asInfo:
    10861086                    # Do the logging.
    10871087                    for sItem in asInfo:
     
    11931193            sText.strip();
    11941194            idxText = 0;
    1195             while len(sText) > 0:
     1195            while sText:
    11961196                if self.sTagBuffer is None:
    11971197                    # Look for the start of a tag.
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette