Author: Armin Rigo <[email protected]> Branch: Changeset: r96320:4a9d9c5402d3 Date: 2019-03-15 09:54 +0100 http://bitbucket.org/pypy/pypy/changeset/4a9d9c5402d3/
Log: Mention ordered dict 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 @@ -482,6 +482,9 @@ * SyntaxError_ s try harder to give details about the cause of the failure, so the error messages are not the same as in CPython +* Dictionaries and sets are ordered on PyPy. On CPython < 3.6 they are not; + on CPython >= 3.6 dictionaries (but not sets) are ordered. + .. _extension-modules: _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
