Changes between Version 79 and Version 80 of DeveloperGuidelines/Py_2_3


Ignore:
Timestamp:
07/10/19 22:42:14 (6 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Py_2_3

    v79 v80  
    355355}}}
    356356
    357 This is just something to keep in mind - an actual forward/backward compatibility pattern must be developed for the specific use-case. Neither the Python-2 nor the Python-3 are particularly helpful for generalization, the Turkish I's always need special treatment.
    358 
    359 NB ECMA-Script implements the same behavior as Python-3, so there is cross-platform consistency, at least.
     357This is just something to keep in mind - an actual forward/backward compatibility pattern must be developed for the specific use-case. Neither the Python-2 nor the Python-3 behavior are particularly helpful for generalization, the Turkish I's always need special treatment.
     358
     359Be careful with character-wise string processing after {{{lower()}}} when Turkish letters could be involved!
     360
     361NB Many other platforms, e.g. ECMA-Script, implement the same behavior as Python-3 (i.e. the Unicode spec), so there is cross-platform consistency, at least.