Author: Maciej Fijalkowski <[email protected]> Branch: Changeset: r56032:aad0e389d02d Date: 2012-07-11 18:40 +0200 http://bitbucket.org/pypy/pypy/changeset/aad0e389d02d/
Log: mention __iter__ works in rpython diff --git a/pypy/doc/coding-guide.rst b/pypy/doc/coding-guide.rst --- a/pypy/doc/coding-guide.rst +++ b/pypy/doc/coding-guide.rst @@ -341,8 +341,8 @@ **objects** - Normal rules apply. Special methods are not honoured, except ``__init__`` and - ``__del__``. + Normal rules apply. Special methods are not honoured, except ``__init__``, + ``__del__`` and ``__iter__``. This layout makes the number of types to take care about quite limited. _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
