Re: Newbie: Looking for code review on my first Python project.

2012-01-11 Thread 88888 Dihedral
HoneyMonster於 2012年1月12日星期四UTC+8上午5時09分13秒寫道: > On Wed, 11 Jan 2012 11:39:48 +, HoneyMonster wrote: > > > On Tue, 10 Jan 2012 18:17:48 -0700, Ian Kelly wrote: > > > >> On Tue, Jan 10, 2012 at 4:44 PM, HoneyMonster > >> wrote: > >>> Hi, > >>> > >>> I'm new to Python and recently completed my

Re: Newbie: Looking for code review on my first Python project.

2012-01-11 Thread HoneyMonster
On Wed, 11 Jan 2012 11:39:48 +, HoneyMonster wrote: > On Tue, 10 Jan 2012 18:17:48 -0700, Ian Kelly wrote: > >> On Tue, Jan 10, 2012 at 4:44 PM, HoneyMonster >> wrote: >>> Hi, >>> >>> I'm new to Python and recently completed my first project. I used >>> wxPython with wxGlade to generate the

Re: Newbie: Looking for code review on my first Python project.

2012-01-11 Thread HoneyMonster
On Tue, 10 Jan 2012 18:17:48 -0700, Ian Kelly wrote: > On Tue, Jan 10, 2012 at 4:44 PM, HoneyMonster > wrote: >> Hi, >> >> I'm new to Python and recently completed my first project. I used >> wxPython with wxGlade to generate the GUI bits.The application seems to >> work well, but I am entirely s

Re: Newbie: Looking for code review on my first Python project.

2012-01-10 Thread Ben Finney
Terry Reedy writes: > I would too, but if you prefer the indentation, just leave out the > '+'s and let Python do the catenation when compiling: Or use a trimple quoted string, with indentation in the source, and use Python's batteries to manage it at runtime. Best of both worlds http://stackove

Re: Newbie: Looking for code review on my first Python project.

2012-01-10 Thread Steven D'Aprano
On Tue, 10 Jan 2012 22:59:23 -0500, Terry Reedy wrote: > On 1/10/2012 8:43 PM, Chris Angelico wrote: > >> about = "Built by Walter Hurry using Python and wxPython,\n" + \ >> "with wxGlade to generate the code for the GUI elements.\n" + >> \ "Phil Lewis' get_iplayer does the real

Re: Newbie: Looking for code review on my first Python project.

2012-01-10 Thread Terry Reedy
On 1/10/2012 8:43 PM, Chris Angelico wrote: about = "Built by Walter Hurry using Python and wxPython,\n" + \ "with wxGlade to generate the code for the GUI elements.\n" + \ "Phil Lewis' get_iplayer does the real work.\n\n" + \ "Version 1.05: January 10, 2012" I'd do t

Re: Newbie: Looking for code review on my first Python project.

2012-01-10 Thread Ben Finney
Chris Angelico writes: > On Wed, Jan 11, 2012 at 10:44 AM, HoneyMonster > wrote: > > Hi, > > > > I'm new to Python and recently completed my first project. I used > > wxPython with wxGlade to generate the GUI bits.The application seems to > > work well, but I am entirely self-taught, so have und

Re: Newbie: Looking for code review on my first Python project.

2012-01-10 Thread Terry Reedy
On 1/10/2012 8:17 PM, Ian Kelly wrote: On Tue, Jan 10, 2012 at 4:44 PM, HoneyMonster wrote: Hi, I'm new to Python and recently completed my first project. I used wxPython with wxGlade to generate the GUI bits.The application seems to work well, but I am entirely self-taught, so have undoubtedl

Re: Newbie: Looking for code review on my first Python project.

2012-01-10 Thread Chris Angelico
On Wed, Jan 11, 2012 at 10:44 AM, HoneyMonster wrote: > Hi, > > I'm new to Python and recently completed my first project. I used > wxPython with wxGlade to generate the GUI bits.The application seems to > work well, but I am entirely self-taught, so have undoubtedly committed a > number of howler

Re: Newbie: Looking for code review on my first Python project.

2012-01-10 Thread Ian Kelly
On Tue, Jan 10, 2012 at 4:44 PM, HoneyMonster wrote: > Hi, > > I'm new to Python and recently completed my first project. I used > wxPython with wxGlade to generate the GUI bits.The application seems to > work well, but I am entirely self-taught, so have undoubtedly committed a > number of howlers

Newbie: Looking for code review on my first Python project.

2012-01-10 Thread HoneyMonster
Hi, I'm new to Python and recently completed my first project. I used wxPython with wxGlade to generate the GUI bits.The application seems to work well, but I am entirely self-taught, so have undoubtedly committed a number of howlers in terms of style, design, standards, best practice and so forth