On Jan 2, 6:26 pm, Andreas Waldenburger <geekm...@usenot.de> wrote: > On Fri, 2 Jan 2009 16:16:10 -0800 (PST) vk <vmi...@gmail.com> wrote: > > > > If there were, I would expect it to conform with PEP 8 (get those > > > ugly camelCase names outta there :-) > > > haha, please forgive me. > > I'll try and think of some more creative names. > > FYI: The names themselves aren't he problem at all. They just should > be all_lowercase_with_underscores if they're functions or variables. > CamelCase (with initial capital!) is "reserved" for classnames only. > > /W > > -- > My real email address is constructed by swapping the domain with the > recipient (local part).
FYI camelCase with __init__ capital is called "title case" try this: >>> 'hello world".title() -- http://mail.python.org/mailman/listinfo/python-list