We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0c8965 commit 30c16afCopy full SHA for 30c16af
java2python/lib/defaultconfig.py
@@ -179,6 +179,7 @@
179
'not':'not_',
180
'or':'or_',
181
'print':'print_',
182
+ 'None':'None_',
183
}
184
185
java2python/tests/Keywords.java
@@ -31,5 +31,9 @@ public static void main(String[] args) {
31
32
String str = "this is str";
33
Assert.assertEquals(str, "this is str");
34
+
35
+ String None = "this is None";
36
+ Assert.assertEquals(None, "this is None");
37
38
39
0 commit comments