Changes between Version 6 and Version 7 of DeveloperGuidelines/Py_2_3
- Timestamp:
- 06/26/19 09:10:22 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Py_2_3
v6 v7 81 81 === Alternative Imports === 82 82 83 As the locations and names of some libraries have changed in Python-3, we use the compatibility module ( modules/s3compat.py) to implement suitable alternatives. Similarily, the compat module provides alternatives for other objects such as types, functions and certain common patterns.83 As the locations and names of some libraries have changed in Python-3, we use the compatibility module ({{{modules/s3compat.py}}}) to implement suitable alternatives. Similarily, the compat module provides alternatives for other objects such as types, functions and certain common patterns. 84 84 85 Where an object name is provided by modules/s3compat.py, it mustbe imported from there if used.85 Where an object name is provided by modules/s3compat.py, it '''must''' be imported from there if used. 86 86 87 87 The following objects are provided by s3compat: