Re: Syntax error after upgrading to Python 2.4

2005-08-10 Thread Walter Dörwald
[EMAIL PROTECTED] wrote: > Hi, > > After upgrading to 2.4 (from 2.3), I'm getting a weird syntax error: > > import themes > > Traceback (most recent call last): > File "", line 1, in ? > File "themes.py", line 564 > font = self.font.makeBlackAndWhite(), >

Re: Syntax error after upgrading to Python 2.4

2005-08-10 Thread nicolas_riesch
[EMAIL PROTECTED] wrote: > additive = self.additive, > ^ > SyntaxError: invalid syntax > I'm using Windows XP and Python 2.4.1 > > Any ideas? O:-) I had a similar problem with python 2.4.1. When I imported some module, I got a Sy

Re: Syntax error after upgrading to Python 2.4

2005-08-10 Thread Michael Hudson
Reinhold Birkenfeld <[EMAIL PROTECTED]> writes: > Michael Hudson wrote: >> [EMAIL PROTECTED] writes: >> >>> On Sat, Aug 06, 2005 at 05:15:22PM -0400, Terry Reedy wrote: In any case letting developers add new features is part of the price of getting unpaid bug fixes for free software.

Re: Syntax error after upgrading to Python 2.4

2005-08-09 Thread Reinhold Birkenfeld
Michael Hudson wrote: > [EMAIL PROTECTED] writes: > >> On Sat, Aug 06, 2005 at 05:15:22PM -0400, Terry Reedy wrote: >>> In any case letting developers add new features is part of the price of >>> getting unpaid bug fixes for free software. But note that PSF does not >>> make you to upgrade. He

Re: Syntax error after upgrading to Python 2.4

2005-08-08 Thread Michael Hudson
[EMAIL PROTECTED] writes: > On Sat, Aug 06, 2005 at 05:15:22PM -0400, Terry Reedy wrote: >> In any case letting developers add new features is part of the price of >> getting unpaid bug fixes for free software. But note that PSF does not >> make you to upgrade. Here is the current list of poss

Re: Syntax error after upgrading to Python 2.4

2005-08-06 Thread jepler
On Sat, Aug 06, 2005 at 05:15:22PM -0400, Terry Reedy wrote: > In any case letting developers add new features is part of the price of > getting unpaid bug fixes for free software. But note that PSF does not > make you to upgrade. Here is the current list of possible downloads. > [a mere 8 ver

Re: Syntax error after upgrading to Python 2.4

2005-08-06 Thread Terry Reedy
"Fernando" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] I wrote >> I don't see the problem yet. I certainly do not see anything that >> should >> have been affected by the upgrade (was it from 2.3 on XP also?) > Yes. and >> After checking for nonprinting chars, I would shuffle

Re: Syntax error after upgrading to Python 2.4

2005-08-06 Thread John Machin
Fernando wrote: >>I don't see the problem yet. I certainly do not see anything that should >>have been affected by the upgrade (was it from 2.3 on XP also?) > > > Yes. > > >>After checking for nonprinting chars, I would shuffle the param-default >>lines to try to determine which is really at f

Re: Syntax error after upgrading to Python 2.4

2005-08-06 Thread Peter Hansen
Fernando wrote: > I reinstalled version 2.3.5 and everything works fine now. It's > definately something related to the latest version. No problem in software is definite until you actually know what the solution is. I'd suspect something other than a simple problem in 2.4 itself, since otherwi

Re: Syntax error after upgrading to Python 2.4

2005-08-06 Thread Fernando
> I don't see the problem yet. I certainly do not see anything that should > have been affected by the upgrade (was it from 2.3 on XP also?) Yes. > After checking for nonprinting chars, I would shuffle the param-default > lines to try to determine which is really at fault. Good luck, or wait fo

Re: Syntax error after upgrading to Python 2.4

2005-08-05 Thread Terry Reedy
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > After upgrading to 2.4 (from 2.3), I'm getting a weird syntax error: > import themes > Traceback (most recent call last): > File "", line 1, in ? > File "themes.py", line 564 >font = self.font.makeBlackAndWhite(), >

Syntax error after upgrading to Python 2.4

2005-08-05 Thread frr
Hi, After upgrading to 2.4 (from 2.3), I'm getting a weird syntax error: >>> import themes Traceback (most recent call last): File "", line 1, in ? File "themes.py", line 564 font = self.font.makeBlackAndWhite(), additive = self.additive,