日付のパース

time.strptime(string, format)を使う。
http://www.python.jp/doc/release/lib/module-time.html

strftimeはdatetimeモジュールの各クラスにあるのだけど、strptimeはtimeモジュールにしかないので注意。
日付のパースは、こんな感じが楽かしら。

y,m,d,_,_,_,_,_,_=time.strptime(str, '%Y/%m/%d')
date = datetime.date(y,m,d)