On Fri, 27 May 2011 13:07:49 -0700 Damian Johnson atagar1@gmail.com wrote:
Hi all. Kamran and I are gonna doing code reviews publicly so if you're interested and spot issues we miss then feel free to chime in. -Damian
Change: https://gitweb.torproject.org/user/krkhan/arm.git/commitdiff/5fd9b5f74a86eb7...
titlewidth = max(map(lambda title: len(title), titles)) + 2
Why not “titlewidth = max(map(len, titles)) + 2”?
Robert Ransom