VirtualBox

Ignore:
Timestamp:
Jan 10, 2018 11:21:09 AM (7 years ago)
Author:
vboxsync
Message:

testdriver: python 3 updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testdriver/reporter.py

    r69444 r70508  
    432432        """Ends and completes the log files."""
    433433        try:    sTsIso = self.fnGetIsoTimestamp();
    434         except Exception, oXcpt:
     434        except Exception as oXcpt:
    435435            sTsIso = str(oXcpt);
    436436
     
    522522        try:
    523523            oDstFile = utils.openNoInherit(sDstFilename, 'w');
    524         except Exception, oXcpt:
     524        except Exception as oXcpt:
    525525            self.log(0, 'error opening %s: %s' % (sDstFilename, oXcpt), sCaller, sTsPrf);
    526526        else:
     
    528528                try:
    529529                    abBuf = oSrcFile.read(65536);
    530                 except Exception, oXcpt:
     530                except Exception as oXcpt:
    531531                    fRc = False;
    532532                    self.log(0, 'error reading %s: %s' % (sSrcFilename, oXcpt), sCaller, sTsPrf);
     
    534534                    try:
    535535                        oDstFile.write(abBuf);
    536                     except Exception, oXcpt:
     536                    except Exception as oXcpt:
    537537                        fRc = False;
    538538                        self.log(0, 'error writing %s: %s' % (sDstFilename, oXcpt), sCaller, sTsPrf);
     
    562562        try:
    563563            oDstFile = utils.openNoInherit(sDstFilename, 'w');
    564         except Exception, oXcpt:
     564        except Exception as oXcpt:
    565565            self.log(0, 'error opening %s: %s' % (sDstFilename, oXcpt), sCaller, sTsPrf);
    566566        else:
    567567            try:
    568568                oDstFile.write(sLog);
    569             except Exception, oXcpt:
     569            except Exception as oXcpt:
    570570                fRc = False;
    571571                self.log(0, 'error writing %s: %s' % (sDstFilename, oXcpt), sCaller, sTsPrf);
     
    719719        try:
    720720            sRspBody  = oResponse.read();
    721         except httplib.IncompleteRead, oXcpt:
     721        except httplib.IncompleteRead as oXcpt:
    722722            self._writeOutput('%s: %s: Warning: httplib.IncompleteRead: %s [expected %s, got %s]'
    723723                              % (utils.getTimePrefix(), sOperation, oXcpt, oXcpt.expected, len(oXcpt.partial),));
     
    861861                    self._writeOutput('_xmlDoFlush: Failed - we should abort the test, really.');
    862862                    return (None, True);
    863             except Exception, oXcpt:
     863            except Exception as oXcpt:
    864864                if not fDtor:
    865865                    logXcpt('warning: exception during XML_RESULTS request');
     
    14231423    try:
    14241424        oSrcFile = utils.openNoInherit(sFilename, 'rb');
    1425     except IOError, oXcpt:
     1425    except IOError as oXcpt:
    14261426        if oXcpt.errno != errno.ENOENT:
    14271427            logXcpt('addLogFile(%s,%s,%s)' % (sFilename, sDescription, sKind));
     
    16241624    try:
    16251625        oSrcFile = utils.openNoInherit(sFilename, 'r');
    1626     except IOError, oXcpt:
     1626    except IOError as oXcpt:
    16271627        if oXcpt.errno != errno.ENOENT:
    16281628            logXcpt('addSubXmlFile(%s)' % (sFilename,));
Note: See TracChangeset for help on using the changeset viewer.

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