File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ necessary, those expressions are moved outside of statements.
52
52
53
53
All of the following assignment operators are translated into their Python
54
54
equivalents:
55
-
55
+
56
56
= += -= *= /= &= |= ^= %= <<= >>=
57
57
58
58
The bit shift right (` >>> ` )and bit shift assign right (` >>>= ` ) operators are
@@ -131,7 +131,7 @@ statements.
131
131
132
132
Java ` try ` and ` catch ` statements are translated to equivalent Python ` try ` and
133
133
` except ` statements.
134
-
134
+
135
135
#### switch and case
136
136
137
137
Java ` switch ` and ` case ` statements are translated to equivalent Python ` if `
@@ -160,7 +160,7 @@ statements.
160
160
161
161
#### throw
162
162
163
- Java ` throw ` statements are translated to equivalent Python ` throw ` statements.
163
+ Java ` throw ` statements are translated to equivalent Python ` raise ` statements.
164
164
165
165
#### break
166
166
You can’t perform that action at this time.
0 commit comments