[New-bugs-announce] [issue11425] Cleanup sample codes in tutorial.

INADA Naoki report at bugs.python.org
Mon Mar 7 06:44:53 CET 2011


New submission from INADA Naoki <songofacandy at gmail.com>:

* Insert spaces around operators and after commas.
* Split one liner blocks (ex. def foo(x, y): return x + y) to
  multi-line blocks.
* Insert empty line after def block for scripts (not interactive mode).
* Use new-style raise (s/ralse KeyboardInterrupt/raise KeyboardInterrupt()/)
* Use x ** 3 instead of x * x * x.

Attached patch is for Python 2.6.
I'll make same changes for Python 3.1 if this patch is accepted.

----------
assignee: docs at python
components: Documentation
files: cleanup_tutorial_codes.patch
keywords: patch
messages: 130225
nosy: docs at python, naoki
priority: normal
severity: normal
status: open
title: Cleanup sample codes in tutorial.
versions: Python 2.6, Python 2.7, Python 3.1, Python 3.2, Python 3.3
Added file: http://bugs.python.org/file21027/cleanup_tutorial_codes.patch

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue11425>
_______________________________________


More information about the New-bugs-announce mailing list