Re: [Tutor] (no subject)

2012-06-19 Thread Emile van Sebille
On 6/19/2012 12:35 PM Selby Rowley-Cannon said... Mailing list; I have a small, [for the most part] functioning translation app for Rydish, a language created for the sole purpose of an RPG. The only problem is when I enter a word that has not yet been translated, I get this error: Traceback (mo

Re: [Tutor] (no subject)

2012-06-19 Thread Dave Angel
On 06/19/2012 06:48 PM, Mark Lawrence wrote: > On 19/06/2012 21:07, Dave Angel wrote: >> On 06/19/2012 03:35 PM, Selby Rowley-Cannon wrote: >>> Mailing list; >>> I have a small, [for the most part] functioning translation >>> app for Rydish, a language created for the sole purpose of an RP

Re: [Tutor] (no subject)

2012-06-19 Thread Mark Lawrence
On 19/06/2012 21:07, Dave Angel wrote: On 06/19/2012 03:35 PM, Selby Rowley-Cannon wrote: Mailing list; I have a small, [for the most part] functioning translation app for Rydish, a language created for the sole purpose of an RPG. The only problem is when I enter a word that has not y

Re: [Tutor] (no subject)

2012-06-19 Thread Dave Angel
On 06/19/2012 03:35 PM, Selby Rowley-Cannon wrote: > Mailing list; > I have a small, [for the most part] functioning translation app for > Rydish, a language created for the sole purpose of an RPG. The only problem > is when I enter a word that has not yet been translated, I get this erro

Re: [Tutor] (no subject)

2012-06-19 Thread Martin A. Brown
Greetings Selby, :         I have a small, [for the most part] functioning : translation app for Rydish, a language created for the sole : purpose of an RPG. The only problem is when I enter a word that : has not yet been translated, I get this error: : : Traceback (most recent call las

Re: [Tutor] (no subject)

2012-06-19 Thread Joel Goldstick
On Tue, Jun 19, 2012 at 3:35 PM, Selby Rowley-Cannon wrote: > Mailing list; >         I have a small, [for the most part] functioning translation app for > Rydish, a language created for the sole purpose of an RPG. The only problem > is when I enter a word that has not yet been translated, I get t

[Tutor] (no subject)

2012-06-19 Thread Selby Rowley-Cannon
Mailing list;         I have a small, [for the most part] functioning translation app for Rydish, a language created for the sole purpose of an RPG. The only problem is when I enter a word that has not yet been translated, I get this error: Traceback (most recent call last):   File "translator.p

Re: [Tutor] python varying mulitple inheritance

2012-06-19 Thread kendy
Thank you Steve and Alan! I'll keep studying and practicing. Ken >Back to basics. a class is a definition of a *type* of thing, not a >particular case. A Pocket is a general purpose container. Each instance >can hold many things. So you would normally expect one pocket class and >6 instances

Re: [Tutor] Pymongo Error

2012-06-19 Thread James Reynolds
On Tue, Jun 19, 2012 at 1:22 AM, Ranjith Kumar wrote: > Hi all, > I tried Django with Mongodb while running manage.py syncdb I endup with > this error > > note : it works fine with sqlite and mysql db > > (django-1.3)ranjith@ranjith:~/ > sandbox/python-box/hukkster-core-site/hukk$ ./manage.py sync

Re: [Tutor] Pymongo Error

2012-06-19 Thread Kwpolska
For some reason, GMail sent my response to Ranjith and not to the whole list. Fixing with his response added. On Tue, Jun 19, 2012 at 7:22 AM, Ranjith Kumar wrote: > Hi all, > I tried Django with Mongodb while running manage.py syncdb I endup with this > error > > note : it works fine with sqlite

Re: [Tutor] Help with Matplotlib labels

2012-06-19 Thread Mark Lawrence
On 19/06/2012 00:46, Alan Gauld wrote: On 19/06/12 00:13, Sean Carolan wrote: and not the total of all the individual items. Anyone matplotlib experts out there who can weigh in? Not me, but I notice there is a gmane newsfeed for matplotlib: gmane.comp.python.matplotlib.general Probably wor

Re: [Tutor] Writing to Windows 64-bit event log

2012-06-19 Thread Tim Golden
On 19/06/2012 06:37, Johan Geldenhuys wrote: > I've looked all over, but couldn't find any help as far as an API goes > to log to a 64-bit Windows7 machine event log. There are functions available in the pywin32 package under the win32evtlog module. I have wrapped some of them in my winsys packag

Re: [Tutor] Writing to Windows 64-bit event log

2012-06-19 Thread Alan Gauld
On 19/06/12 06:37, Johan Geldenhuys wrote: I've looked all over, but couldn't find any help as far as an API goes to log to a 64-bit Windows7 machine event log. I don't know if your search included MSDN but that would be my third port of call after the standard library and Google... There wil

Re: [Tutor] python varying mulitple inheritance

2012-06-19 Thread Alan Gauld
On 19/06/12 06:14, ke...@kendy.org wrote: Hmmm. No need to write the whole thing written out. Just how not to code: class Pocket1(Wallet, Keys, Comb, Usb, CellPhone, WorkBadge): class Pocket2(Wallet, Keys, Comb, Usb, CellPhone): class Pocket3(Wallet, Keys, Comb, Usb,WorkBadge): class