Changes between Version 161 and Version 162 of j2p
- Timestamp:
- 11/13/24 14:02:50 (12 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
j2p
v161 v162 271 271 === Reserved keywords 272 272 Python has a number of reserved keywords: 273 274 and 275 except 276 lambda 277 with 278 as 279 finally 280 nonlocal 281 while 282 assert 283 false 284 None 285 yield 286 break 287 for 288 not 289 class 290 from 291 or 292 continue 293 global 294 pass 295 def 296 if 297 raise 298 del 299 import 300 return 301 elif 302 in 303 True 304 else 305 is 306 try 307 273 {{{ 274 and except lambda with as 275 finally nonlocal while 276 assert false None yield 277 break for not class from 278 or continue global pass 279 def if raise del import 280 return elif in True else 281 is try 282 }}} 308 283 If you have these in your java program, as method name or variable name, then j2p will change the name by (de)capitalizing the first letter of the name. Do not use both the lower and upper case variant at the same time, because the translated names will then collide. 309 284