Re: Which non SQL Database ?

2011-01-22 Thread Deadly Dirk
On Sat, 04 Dec 2010 16:42:36 -0600, Jorge Biquez wrote: > Hello all. > > Newbie question. Sorry. > > As part of my process to learn python I am working on two personal > applications. Both will do it fine with a simple structure of data > stored in files. I now there are lot of databases around

Re: Email für Dich

2010-07-19 Thread Deadly Dirk
On Mon, 19 Jul 2010 17:52:56 +0200, Wolfgang Meiners wrote: > Liebe Kirsten, > > ich liebe dich und freue mich, dass du bald auch Ferien hast. > > Wolfgang Und die ganze Python gruppe liebt dich auch. -- The missionaries go forth to Christianize the savages - as if the savages weren't dang

Re: super() woes (n00b)

2010-06-18 Thread Deadly Dirk
On Fri, 18 Jun 2010 11:19:56 +0200, Jean-Michel Pichavant wrote: > Deadly Dirk wrote: >> I cannot get right the super() function: Python 3.1.1+ (r311:74480, Nov >> 2 2009, 14:49:22) [GCC 4.4.1] on linux2 >> Type "copyright", "credits" or "license(

Re: super() woes (n00b)

2010-06-18 Thread Deadly Dirk
On Thu, 17 Jun 2010 12:18:33 -0700, Ethan Furman wrote: > Deadly Dirk wrote: >> On Thu, 17 Jun 2010 13:48:45 -0400, J. Cliff Dyer wrote: >> >>> super gives you an instantiated version of the super class, which >>> means that you don't have to explicitly se

Re: super() woes (n00b)

2010-06-17 Thread Deadly Dirk
On Thu, 17 Jun 2010 13:48:45 -0400, J. Cliff Dyer wrote: > super gives you an instantiated version of the super class, which means > that you don't have to explicitly send self to any methods you call on > it. > > So use `super().__init__()` instead. Thanks. Interestingly enough, it works in Pyt

Re: super() woes (n00b)

2010-06-17 Thread Deadly Dirk
On Thu, 17 Jun 2010 16:36:10 +, Deadly Dirk wrote: > I cannot get right the super() function: Python 3.1.1+ (r311:74480, Nov > 2 2009, 14:49:22) [GCC 4.4.1] on linux2 > Type "copyright", "credits" or "license()" for more information. No > Subpro

super() woes (n00b)

2010-06-17 Thread Deadly Dirk
I cannot get right the super() function: Python 3.1.1+ (r311:74480, Nov 2 2009, 14:49:22) [GCC 4.4.1] on linux2 Type "copyright", "credits" or "license()" for more information. No Subprocess >>> class P: def __init__(__class__,self): print("I am a member of class P")

Re: Removing anti-Jewish postings from Python list

2010-06-16 Thread Deadly Dirk
On Wed, 16 Jun 2010 11:50:45 -0700, Stephen Hansen wrote: > On 6/16/10 10:56 AM, Alan Harris-Reid wrote: >> Any idea how we get rid of this 'noise'? Will it eventually go away if >> we ignore it, or is there anything the moderators can do to clean-up >> this (normally) wonderful resource for Pyth

Re: Syntax problem - cannot solve it by myself

2010-06-08 Thread Deadly Dirk
On Tue, 08 Jun 2010 18:52:44 -0700, alex23 wrote: > Unless you have a clear need for 3rd party libraries that currently > don't have 3.x versions, starting with Python 3 isn't a bad idea. >From what I see, most of the people are still using Python 2.x. My reason for learning Python is the fact

Re: Syntax problem - cannot solve it by myself

2010-06-08 Thread Deadly Dirk
On Wed, 09 Jun 2010 00:25:01 +0200, Thomas Jollans wrote: > Yes, that will work, but you should really install Python 3.1 (it's in > ubuntu, as others have said!) because you will almost certainly hit into > other snags. Not as obvious as this one, but they are there. You can > work around all of

Re: Syntax problem - cannot solve it by myself

2010-06-08 Thread Deadly Dirk
On Tue, 08 Jun 2010 21:44:18 +, Deadly Dirk wrote: > I am a total beginner with Python. I am reading a book ("The Quick > Python Book", 2nd edition, by Vernon Ceder) which tells me that print > function takes end="" argument not to print newline character. I tri

Syntax problem - cannot solve it by myself

2010-06-08 Thread Deadly Dirk
I am a total beginner with Python. I am reading a book ("The Quick Python Book", 2nd edition, by Vernon Ceder) which tells me that print function takes end="" argument not to print newline character. I tried and here is what happens: >>> print(x) abc >>> print(x,end="") File "", line 1 pr