Changes between Version 29 and Version 30 of DeveloperGuidelines/Py_2_3
- Timestamp:
- 06/28/19 08:44:53 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Py_2_3
v29 v30 100 100 101 101 ||= '''Name''' =||= '''Type''' =||= '''Import''' =||= '''!Comments/Caveats''' =|| 102 ||PY2|| {{{from s3compat import PY2}}}||boolean||Constant indicating whether we're currently running on Py2, should only be used if alternatives cannot be generalized||102 ||PY2||boolean||{{{from s3compat import PY2}}}||Constant indicating whether we're currently running on Py2, should only be used if alternatives cannot be generalized|| 103 103 ||StringIO||class||{{{from s3compat import StringIO}}}|| || 104 104 ||pickle||module||{{{from s3compat import pickle}}}||replaces cPickle in Py2||