Changes between Version 60 and Version 61 of DeveloperGuidelines/Py_2_3
- Timestamp:
- 07/05/19 23:23:07 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Py_2_3
v60 v61 239 239 If you just want to encode a potential {{{unicode}}} instance as an utf-8 encoded {{{str}}}, use {{{s3_str}}} rather than {{{unicode.encode}}}: 240 240 {{{#!python 241 # Do this instead (without type-check):241 # Do this instead: 242 242 x = s3_str(x) 243 243 }}} 244 244 245 Though, if you want to exclude other types, you can still use {{{basestring}}} for type-checking:246 {{{#!python 247 if isinstance(x, basestring):245 If you need to exclude non-string types from the conversion, you can keep the type-check: 246 {{{#!python 247 if isinstance(x, unicodeT): 248 248 x = s3_str(x) 249 249 }}}