Changes between Version 75 and Version 76 of DeveloperGuidelines/Py_2_3
- Timestamp:
- 07/10/19 22:35:28 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Py_2_3
v75 v76 324 324 Python-2 did not implement the U0307 character, so it converted the letters like this: 325 325 {{{#!python 326 # Actually wrong in both cases, but consistently so: 326 327 >>> u"İ".lower().upper() 327 328 u'I' … … 334 335 }}} 335 336 336 Python-3 does implement the U0307 character, so the behavior is different:337 Python-3, where all str are unicode, does implement the U0307 character, so the behavior is different: 337 338 {{{#!python 338 339 >>> "İ".lower().upper() 339 340 'İ' 341 # But: same inconsistency as Py2 with the dot-less lowercase ı 340 342 >>> "ı".upper().lower() 341 343 'i' … … 354 356 355 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.