Changes between Version 161 and Version 162 of j2p


Ignore:
Timestamp:
11/13/24 14:02:50 (12 days ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • j2p

    v161 v162  
    271271=== Reserved keywords
    272272Python 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{{{
     274and except lambda with as
     275finally nonlocal while
     276assert false None yield
     277break for not class from
     278or continue global pass
     279def if raise del import
     280return elif in True else
     281is try
     282}}}
    308283If 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.
    309284