Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
46b99911
Commit
46b99911
authored
Jul 25, 2015
by
Petr Viktorin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2to3: Apply the 'except' fixer
parent
0927accf
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
38 additions
and
39 deletions
+38
-39
2to3-fixers.txt
2to3-fixers.txt
+0
-1
Cython/Build/Dependencies.py
Cython/Build/Dependencies.py
+1
-1
Cython/Compiler/AutoDocTransforms.py
Cython/Compiler/AutoDocTransforms.py
+1
-1
Cython/Compiler/CmdLine.py
Cython/Compiler/CmdLine.py
+1
-1
Cython/Compiler/Code.py
Cython/Compiler/Code.py
+1
-1
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+16
-16
Cython/Compiler/Main.py
Cython/Compiler/Main.py
+2
-2
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+1
-1
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+2
-2
Cython/Compiler/ParseTreeTransforms.py
Cython/Compiler/ParseTreeTransforms.py
+1
-1
Cython/Compiler/Parsing.py
Cython/Compiler/Parsing.py
+1
-1
Cython/Compiler/Pipeline.py
Cython/Compiler/Pipeline.py
+3
-3
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+1
-1
Cython/Compiler/Visitor.py
Cython/Compiler/Visitor.py
+1
-1
Cython/Debugger/DebugWriter.py
Cython/Debugger/DebugWriter.py
+1
-1
Cython/Debugger/Tests/test_libcython_in_gdb.py
Cython/Debugger/Tests/test_libcython_in_gdb.py
+1
-1
Cython/Plex/Lexicons.py
Cython/Plex/Lexicons.py
+1
-1
Cython/Tempita/_tempita.py
Cython/Tempita/_tempita.py
+2
-2
Cython/TestUtils.py
Cython/TestUtils.py
+1
-1
No files found.
2to3-fixers.txt
View file @
46b99911
lib2to3.fixes.fix_basestring
lib2to3.fixes.fix_dict
lib2to3.fixes.fix_except
lib2to3.fixes.fix_exec
lib2to3.fixes.fix_execfile
lib2to3.fixes.fix_funcattrs
...
...
Cython/Build/Dependencies.py
View file @
46b99911
...
...
@@ -978,7 +978,7 @@ def cythonize_one(pyx_file, c_file, fingerprint, quiet, options=None, raise_on_f
result
=
compile
([
pyx_file
],
options
)
if
result
.
num_errors
>
0
:
any_failures
=
1
except
(
EnvironmentError
,
PyrexError
)
,
e
:
except
(
EnvironmentError
,
PyrexError
)
as
e
:
sys
.
stderr
.
write
(
'%s
\
n
'
%
e
)
any_failures
=
1
# XXX
...
...
Cython/Compiler/AutoDocTransforms.py
View file @
46b99911
...
...
@@ -70,7 +70,7 @@ class EmbedSignature(CythonTransform):
except
Exception
:
try
:
return
self
.
_fmt_expr_node
(
default_val
)
except
AttributeError
,
e
:
except
AttributeError
as
e
:
return
'<???>'
def
_fmt_arg
(
self
,
arg
):
...
...
Cython/Compiler/CmdLine.py
View file @
46b99911
...
...
@@ -169,7 +169,7 @@ def parse_command_line(args):
options
.
compiler_directives
=
Options
.
parse_directive_list
(
x_args
,
relaxed_bool
=
True
,
current_settings
=
options
.
compiler_directives
)
except
ValueError
,
e
:
except
ValueError
as
e
:
sys
.
stderr
.
write
(
"Error in compiler directive: %s
\
n
"
%
e
.
args
[
0
])
sys
.
exit
(
1
)
elif
option
.
startswith
(
'--debug'
):
...
...
Cython/Compiler/Code.py
View file @
46b99911
...
...
@@ -128,7 +128,7 @@ class UtilityCodeBase(object):
del tags['substitute']
try:
code = Template(code).substitute(vars(Naming))
except (KeyError, ValueError)
,
e:
except (KeyError, ValueError)
as
e:
raise RuntimeError("
Error
parsing
templated
utility
code
of
type
'%s'
at
line
%
d
:
%
s
" % (
type, begin_lineno, e))
...
...
Cython/Compiler/ExprNodes.py
View file @
46b99911
...
...
@@ -2943,7 +2943,7 @@ class IndexNode(ExprNode):
index
=
self
.
index
.
compile_time_value
(
denv
)
try
:
return
base
[
index
]
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
def
is_ephemeral
(
self
):
...
...
@@ -4023,7 +4023,7 @@ class SliceIndexNode(ExprNode):
stop
=
self
.
stop
.
compile_time_value
(
denv
)
try
:
return
base
[
start
:
stop
]
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
def
analyse_target_declaration
(
self
,
env
):
...
...
@@ -4423,7 +4423,7 @@ class SliceNode(ExprNode):
step
=
self
.
step
.
compile_time_value
(
denv
)
try
:
return
slice
(
start
,
stop
,
step
)
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
def
may_be_none
(
self
):
...
...
@@ -4585,7 +4585,7 @@ class SimpleCallNode(CallNode):
args
=
[
arg
.
compile_time_value
(
denv
)
for
arg
in
self
.
args
]
try
:
return
function
(
*
args
)
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
def
analyse_as_type
(
self
,
env
):
...
...
@@ -5324,7 +5324,7 @@ class GeneralCallNode(CallNode):
keyword_args
=
self
.
keyword_args
.
compile_time_value
(
denv
)
try
:
return
function
(
*
positional_args
,
**
keyword_args
)
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
def
explicit_args_kwds
(
self
):
...
...
@@ -5545,7 +5545,7 @@ class AsTupleNode(ExprNode):
arg
=
self
.
arg
.
compile_time_value
(
denv
)
try
:
return
tuple
(
arg
)
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
def
analyse_types
(
self
,
env
):
...
...
@@ -5615,7 +5615,7 @@ class MergedDictNode(ExprNode):
if
reject_duplicates
and
key
in
result
:
raise
ValueError
(
"duplicate keyword argument found: %s"
%
key
)
result
[
key
]
=
value
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
return
result
...
...
@@ -5797,7 +5797,7 @@ class AttributeNode(ExprNode):
obj
=
self
.
obj
.
compile_time_value
(
denv
)
try
:
return
getattr
(
obj
,
attr
)
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
def
type_dependencies
(
self
,
env
):
...
...
@@ -6923,7 +6923,7 @@ class TupleNode(SequenceNode):
values
=
self
.
compile_time_value_list
(
denv
)
try
:
return
tuple
(
values
)
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
def
generate_operation_code
(
self
,
code
):
...
...
@@ -7571,7 +7571,7 @@ class SetNode(ExprNode):
values
=
[
arg
.
compile_time_value
(
denv
)
for
arg
in
self
.
args
]
try
:
return
set
(
values
)
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
def
generate_evaluation_code
(
self
,
code
):
...
...
@@ -7622,7 +7622,7 @@ class DictNode(ExprNode):
for
item
in
self
.
key_value_pairs
]
try
:
return
dict
(
pairs
)
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
def
type_dependencies
(
self
,
env
):
...
...
@@ -8960,7 +8960,7 @@ class UnopNode(ExprNode):
operand
=
self
.
operand
.
compile_time_value
(
denv
)
try
:
return
func
(
operand
)
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
def
infer_type
(
self
,
env
):
...
...
@@ -9057,7 +9057,7 @@ class NotNode(UnopNode):
operand
=
self
.
operand
.
compile_time_value
(
denv
)
try
:
return
not
operand
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
def
infer_unop_type
(
self
,
env
,
operand_type
):
...
...
@@ -9824,7 +9824,7 @@ class BinopNode(ExprNode):
operand2
=
self
.
operand2
.
compile_time_value
(
denv
)
try
:
return
func
(
operand1
,
operand2
)
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
def
infer_type
(
self
,
env
):
...
...
@@ -10249,7 +10249,7 @@ class DivNode(NumBinopNode):
func
=
self
.
find_compile_time_binary_operator
(
operand1
,
operand2
)
return
func
(
operand1
,
operand2
)
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
def
_check_truedivision
(
self
,
env
):
...
...
@@ -10924,7 +10924,7 @@ class CmpNode(object):
operand2
=
self
.
operand2
.
compile_time_value
(
denv
)
try
:
result
=
func
(
operand1
,
operand2
)
except
Exception
,
e
:
except
Exception
as
e
:
self
.
compile_time_value_error
(
e
)
result
=
None
if
result
:
...
...
Cython/Compiler/Main.py
View file @
46b99911
...
...
@@ -354,7 +354,7 @@ class Context(object):
raise
RuntimeError
(
"Formal grammer can only be used with compiled Cython with an available pgen."
)
ConcreteSyntaxTree
.
p_module
(
source_filename
)
except
UnicodeDecodeError
,
e
:
except
UnicodeDecodeError
as
e
:
#import traceback
#traceback.print_exc()
raise
self
.
_report_decode_error
(
source_desc
,
e
)
...
...
@@ -699,7 +699,7 @@ def main(command_line = 0):
result
=
compile
(
sources
,
options
)
if
result
.
num_errors
>
0
:
any_failures
=
1
except
(
EnvironmentError
,
PyrexError
)
,
e
:
except
(
EnvironmentError
,
PyrexError
)
as
e
:
sys
.
stderr
.
write
(
str
(
e
)
+
'
\
n
'
)
any_failures
=
1
if
any_failures
:
...
...
Cython/Compiler/ModuleNode.py
View file @
46b99911
...
...
@@ -397,7 +397,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
if
target_file_dir
!=
target_dir
and
not
os
.
path
.
exists
(
target_file_dir
):
try
:
os
.
makedirs
(
target_file_dir
)
except
OSError
,
e
:
except
OSError
as
e
:
import
errno
if
e
.
errno
!=
errno
.
EEXIST
:
raise
...
...
Cython/Compiler/Nodes.py
View file @
46b99911
...
...
@@ -1037,7 +1037,7 @@ class MemoryViewSliceTypeNode(CBaseTypeNode):
try
:
axes_specs
=
MemoryView
.
get_axes_specs
(
env
,
self
.
axes
)
except
CompileError
,
e
:
except
CompileError
as
e
:
error
(
e
.
position
,
e
.
message_only
)
self
.
type
=
PyrexTypes
.
ErrorType
()
return
self
.
type
...
...
@@ -7657,7 +7657,7 @@ class ParallelStatNode(StatNode, ParallelNode):
try
:
self
.
kwargs
=
self
.
kwargs
.
compile_time_value
(
env
)
except
Exception
,
e
:
except
Exception
as
e
:
error
(
self
.
kwargs
.
pos
,
"Only compile-time values may be "
"supplied as keyword arguments"
)
else
:
...
...
Cython/Compiler/ParseTreeTransforms.py
View file @
46b99911
...
...
@@ -255,7 +255,7 @@ class PostParse(ScopeTrackingTransform):
newdecls
.
append
(
decl
)
node
.
declarators
=
newdecls
return
stats
except
PostParseError
,
e
:
except
PostParseError
as
e
:
# An error in a cdef clause is ok, simply remove the declaration
# and try to move on to report more errors
self
.
context
.
nonfatal_error
(
e
)
...
...
Cython/Compiler/Parsing.py
View file @
46b99911
...
...
@@ -3329,7 +3329,7 @@ def p_compiler_directive_comments(s):
try
:
result
.
update
(
Options
.
parse_directive_list
(
directives
,
ignore_unknown
=
True
))
except
ValueError
,
e
:
except
ValueError
as
e
:
s
.
error
(
e
.
args
[
0
],
fatal
=
False
)
s
.
next
()
return
result
...
...
Cython/Compiler/Pipeline.py
View file @
46b99911
...
...
@@ -327,15 +327,15 @@ def run_pipeline(pipeline, source, printtree=True):
data
=
phase
(
data
)
if
DebugFlags
.
debug_verbose_pipeline
:
print
" %.3f seconds"
%
(
time
()
-
t
)
except
CompileError
,
err
:
except
CompileError
as
err
:
# err is set
Errors
.
report_error
(
err
)
error
=
err
except
InternalError
,
err
:
except
InternalError
as
err
:
# Only raise if there was not an earlier error
if
Errors
.
num_errors
==
0
:
raise
error
=
err
except
AbortError
,
err
:
except
AbortError
as
err
:
error
=
err
return
(
error
,
data
)
Cython/Compiler/Symtab.py
View file @
46b99911
...
...
@@ -490,7 +490,7 @@ class Scope(object):
try
:
type
=
PyrexTypes
.
create_typedef_type
(
name
,
base_type
,
cname
,
(
visibility
==
'extern'
))
except
ValueError
,
e
:
except
ValueError
as
e
:
error
(
pos
,
e
.
args
[
0
])
type
=
PyrexTypes
.
error_type
entry
=
self
.
declare_type
(
name
,
type
,
pos
,
cname
,
...
...
Cython/Compiler/Visitor.py
View file @
46b99911
...
...
@@ -176,7 +176,7 @@ class TreeVisitor(object):
raise
except
Errors
.
AbortError
:
raise
except
Exception
,
e
:
except
Exception
as
e
:
if
DebugFlags
.
debug_no_exception_intercept
:
raise
self
.
_raise_compiler_error
(
obj
,
e
)
...
...
Cython/Debugger/DebugWriter.py
View file @
46b99911
...
...
@@ -61,7 +61,7 @@ class CythonDebugWriter(object):
try
:
os
.
makedirs
(
self
.
output_dir
)
except
OSError
,
e
:
except
OSError
as
e
:
if
e
.
errno
!=
errno
.
EEXIST
:
raise
...
...
Cython/Debugger/Tests/test_libcython_in_gdb.py
View file @
46b99911
...
...
@@ -36,7 +36,7 @@ def print_on_call_decorator(func):
try
:
return
func
(
self
,
*
args
,
**
kwargs
)
except
Exception
,
e
:
except
Exception
as
e
:
_debug
(
"An exception occurred:"
,
traceback
.
format_exc
(
e
))
raise
...
...
Cython/Plex/Lexicons.py
View file @
46b99911
...
...
@@ -180,7 +180,7 @@ class Lexicon(object):
re
.
build_machine
(
machine
,
initial_state
,
final_state
,
match_bol
=
1
,
nocase
=
0
)
final_state
.
set_action
(
action
,
priority
=-
token_number
)
except
Errors
.
PlexError
,
e
:
except
Errors
.
PlexError
as
e
:
raise
e
.
__class__
(
"Token number %d: %s"
%
(
token_number
,
e
))
def
parse_token_definition
(
self
,
token_spec
):
...
...
Cython/Tempita/_tempita.py
View file @
46b99911
...
...
@@ -298,7 +298,7 @@ class Template(object):
try:
try:
value = eval(code, self.default_namespace, ns)
except SyntaxError
,
e:
except SyntaxError
as
e:
raise SyntaxError(
'
invalid
syntax
in
expression
:
%
s
' % code)
return value
...
...
@@ -354,7 +354,7 @@ class Template(object):
'
(
no
default_encoding
provided
)
' % value)
try:
value = value.decode(self.default_encoding)
except UnicodeDecodeError
,
e:
except UnicodeDecodeError
as
e:
raise UnicodeDecodeError(
e.encoding,
e.object,
...
...
Cython/TestUtils.py
View file @
46b99911
...
...
@@ -101,7 +101,7 @@ class CythonTest(unittest.TestCase):
try
:
func
()
self
.
fail
(
"Expected an exception of type %r"
%
exc_type
)
except
exc_type
,
e
:
except
exc_type
as
e
:
self
.
assert_
(
isinstance
(
e
,
exc_type
))
return
e
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment