mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-04-03 01:54:44 +02:00
python except as
This commit is contained in:
parent
5fda247dab
commit
9aa6144b2a
@ -6,7 +6,7 @@ def fix_source_eol( path, is_dry_run = True, verbose = True, eol = '\n' ):
|
|||||||
raise ValueError( 'Path "%s" is not a file' % path )
|
raise ValueError( 'Path "%s" is not a file' % path )
|
||||||
try:
|
try:
|
||||||
f = open(path, 'rb')
|
f = open(path, 'rb')
|
||||||
except IOError, msg:
|
except IOError as msg:
|
||||||
print >> sys.stderr, "%s: I/O Error: %s" % (file, str(msg))
|
print >> sys.stderr, "%s: I/O Error: %s" % (file, str(msg))
|
||||||
return False
|
return False
|
||||||
try:
|
try:
|
||||||
|
@ -84,7 +84,7 @@ def svn_check_if_tag_exist( tag_url ):
|
|||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
list_stdout = svn_command( 'list', tag_url )
|
list_stdout = svn_command( 'list', tag_url )
|
||||||
except SVNError, e:
|
except SVNError as e:
|
||||||
if e.returncode != 1 or not str(e).find('tag_url'):
|
if e.returncode != 1 or not str(e).find('tag_url'):
|
||||||
raise e
|
raise e
|
||||||
# otherwise ignore error, meaning tag does not exist
|
# otherwise ignore error, meaning tag does not exist
|
||||||
|
@ -34,7 +34,7 @@ def compareOutputs( expected, actual, message ):
|
|||||||
def safeReadFile( path ):
|
def safeReadFile( path ):
|
||||||
try:
|
try:
|
||||||
return file( path, 'rt' ).read()
|
return file( path, 'rt' ).read()
|
||||||
except IOError, e:
|
except IOError as e:
|
||||||
return '<File "%s" is missing: %s>' % (path,e)
|
return '<File "%s" is missing: %s>' % (path,e)
|
||||||
|
|
||||||
def runAllTests( jsontest_executable_path, input_dir = None,
|
def runAllTests( jsontest_executable_path, input_dir = None,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user