Author: Armin Rigo <[email protected]> Branch: Changeset: r89362:1c1e0c3b2f27 Date: 2017-01-04 15:49 +0100 http://bitbucket.org/pypy/pypy/changeset/1c1e0c3b2f27/
Log: Remove outdated info diff --git a/pypy/doc/cpython_differences.rst b/pypy/doc/cpython_differences.rst --- a/pypy/doc/cpython_differences.rst +++ b/pypy/doc/cpython_differences.rst @@ -428,11 +428,6 @@ ``datetime.date`` is the superclass of ``datetime.datetime``). Anyway, the proper fix is arguably to use a regular method call in the first place: ``datetime.date.today().strftime(...)`` - -* the ``__dict__`` attribute of new-style classes returns a normal dict, as - opposed to a dict proxy like in CPython. Mutating the dict will change the - type and vice versa. For builtin types, a dictionary will be returned that - cannot be changed (but still looks and behaves like a normal dictionary). * some functions and attributes of the ``gc`` module behave in a slightly different way: for example, ``gc.enable`` and _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
