Jérome Perrin
authored
* Zope API changes:
+ publish() stdin is now BytesIO rather than StringIO.
+ HTTPResponse `body` property is now bytes().
+ OFS.Image.File file parameter is bytes().
* Python3 API changes:
+ builtin reduce() was removed.
+ Use BytesIO rather than StringIO to follow py3 API.
+ hmac.new() requires digestmod argument from Python 3.8.
+ Use six.moves library to handle moved objects from py2 to py3.
+ `modernize -f xrange_six` then slightly adjusted manually to just use range
where it does not make a significant difference (for example in test).
+ base64.b64encode() now expects bytes().
+ UserDict() interface changed:
- New parameter in update() and pop().
- `failobj` setdefault parameter renamed to `default`.
+ ensure_list() on dict.{values,items}() and list(dict) for dict.keys() when
we really need a list and not an iterable (Python3).
- Add ensure_list() to RestrictedPython safe_builtins as it's very common usage.
+ Make dict iteration works on both version of Python.
- Use six.iter{items,values,keys}().
- has_key() has been removed.
- Make sure that dict.{items,values,keys}() returns a real list when
modified (ensure_list()).
+ Comparisons between int and NoneType raises TypeError.
+ No more unbound methods in python3 so use six.get_unbound_function().
+ Exceptions:
- No longer behave as sequences. Using `args` attribute instead.
- When an exception has been assigned using `as target`, it is cleared at
the end of the except clause.
+ file: py2 was returning `str` upon reading, now it returns text strings.
Also, opening mode is text strings by default.
+ Data strings are bytes().
- Replace str() by bytes().
+ iterators no longer have next() method, instead there is next() builtin.
+ New ConnectionError exception so rename existing one to not clash.
+ Integer division is now with //.
Co-Authored-by:
Kazuhiko SHIOZAKI <kazuhiko@nexedi.com>
Arnaud Fontaine <arnaud.fontaine@nexedi.com>
Carlos Ramos Carreño <carlos.ramos@nexedi.com>
Emmeline Vouriot <emmeline.vouriot@nexedi.com>
Name | Last commit | Last update |
---|---|---|
bt5 | ||
erp5 | ||
product | ||
scalability_test | ||
slapos | ||
tests | ||
.gitignore | ||
.gitmodules | ||
CHANGES.erp5.util.txt | ||
MANIFEST.in | ||
Products | ||
README.erp5.util.txt | ||
setup.py |