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.
5252
5353All of the following assignment operators are translated into their Python
5454equivalents:
55-
55+
5656 = += -= *= /= &= |= ^= %= <<= >>=
5757
5858The bit shift right (` >>> ` )and bit shift assign right (` >>>= ` ) operators are
@@ -131,7 +131,7 @@ statements.
131131
132132Java ` try ` and ` catch ` statements are translated to equivalent Python ` try ` and
133133` except ` statements.
134-
134+
135135#### switch and case
136136
137137Java ` switch ` and ` case ` statements are translated to equivalent Python ` if `
@@ -160,7 +160,7 @@ statements.
160160
161161#### throw
162162
163- Java ` throw ` statements are translated to equivalent Python ` throw ` statements.
163+ Java ` throw ` statements are translated to equivalent Python ` raise ` statements.
164164
165165#### break
166166
You can’t perform that action at this time.
0 commit comments