[issue17035] Use new style classes in {class, static}method examples

2013-02-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 30e7bc28d4f5 by Ezio Melotti in branch '2.7': #17035: use new style classes in classmethod/staticmethod examples. Patch by Berker Peksag. http://hg.python.org/cpython/rev/30e7bc28d4f5 -- nosy: +python-dev

[issue17035] Use new style classes in {class, static}method examples

2013-02-21 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the report and the patch! -- assignee: docs@python - ezio.melotti nosy: +ezio.melotti resolution: - fixed stage: patch review - committed/rejected status: open - closed type: - enhancement ___

[issue17035] Use new style classes in {class, static}method examples

2013-02-01 Thread Éric Araujo
Éric Araujo added the comment: LGTM. -- nosy: +eric.araujo stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17035 ___ ___

[issue17035] Use new style classes in {class, static}method examples

2013-01-25 Thread Berker Peksag
New submission from Berker Peksag: The examples in the built-in functions documentation[1] should be consistent and use new style classes. [1] http://docs.python.org/2.7/library/functions.html -- assignee: docs@python components: Documentation files: new-style-classes.diff keywords: