トップ «前の日記(2011-08-09) 最新 次の日記(2011-08-11)» 編集

ヨタの日々

2001|08|09|10|11|12|
2002|01|02|03|04|05|06|07|08|09|10|11|12|
2003|01|02|03|04|05|06|07|08|09|10|11|12|
2004|01|02|03|04|05|06|07|08|09|10|11|12|
2005|01|02|03|04|05|06|07|08|09|10|11|12|
2006|01|02|03|04|05|06|07|08|09|10|11|12|
2007|01|02|03|04|05|06|07|08|09|10|11|12|
2008|01|02|03|04|05|06|07|08|09|10|11|12|
2009|01|02|03|04|05|06|07|08|09|10|11|12|
2010|01|02|03|04|05|06|07|08|09|10|11|12|
2011|01|02|03|04|05|06|07|08|09|10|11|12|
2012|01|02|03|04|05|06|07|08|09|10|11|12|
2013|01|02|03|04|05|06|07|08|09|10|11|12|
2014|01|02|03|04|05|06|07|08|09|10|11|12|
2015|01|02|03|04|05|06|07|08|09|10|11|12|
2016|01|02|03|04|05|06|07|08|09|10|11|12|
2017|01|02|03|04|05|06|07|08|09|10|11|12|
2018|01|02|03|04|05|06|07|08|09|10|11|12|
2019|01|02|03|04|05|06|07|08|09|10|11|12|
2020|01|02|03|04|05|06|07|08|09|10|11|12|
2021|01|02|03|04|05|06|07|08|09|10|11|12|
2022|01|02|03|04|05|06|07|08|09|10|11|12|
2023|01|02|03|04|05|06|07|08|12|
2024|01|02|03|04|

2011-08-10 :-(

_ 午前

0400 起床

0730 出勤

0800 テスト準備

_ 午後

1200 テスト準備

1600 残業アワー

_

1800 退勤

1900 散髪

_ [PyChecker][python]PyChecker を入れてみた

環境

  • Microsoft Windows 7
  • cygwin

インストール

サイトの Download Latest Release からダウンロードして展開して setup

% tar xzf pychecker-0.8.19.tar.gz
% cd pychecker-0.8.19
% python setup.py install
% which pychecker
/bin/pychecker

妙なところに入った

~/.pycheckrc はこんな。blacklist はモジュール単位( .py )で書くようだ。あとで書く

limit = 0
stdlib = 1
blacklist = ['foo', 'bar', 'hoge']

実行

ストラテジーパターンのアレ[ 20100725#p04 ]に実行してみる

% pychecker strategy.py
Warning, option (stdlib) doesn't exist, ignoring
Processing module strategy (strategy.py)...
ガーガー
飛んでいまち

Warnings...

strategy.py:12: Redefining attribute (__init__) original line (8)
strategy.py:16: No class attribute (fly_behavior) found
strategy.py:19: No class attribute (quack_behavior) found
strategy.py:42: Parameter (sel) not used
strategy.py:42: self is not first method argument
strategy.py:55: Base class (strategy.Duck) __init__() not called

うお。__init__ を 2 つ書いてた

などと