2013-01-01から1年間の記事一覧

PEP8項目まとめ その2(Whitespace in Expressions and Statements)

前回の続き Whitespace in Expressions and Statements Pet Peeves Avoid extraneous whitespace in the following situations: PEP8 Item pep8 ErrorCode Immediately inside parentheses, brackets or braces. E201, E202 Immediately before a comma, sem…

PEP8項目まとめ その1(Code lay-out)

PythonのコーディングスタイルガイドPEP8について、PyPIで配布されてるpep8でチェックできる項目との対応をまとめる (pep8モジュールですべての項目をチェックできる訳ではないようなので) Code lay-out Indentation PEP8 Item pep8 ErrorCode Use 4 spaces …