Re: braces fixed '#{' and '#}'

2009-01-19 Thread Tim Roberts
Brendan Miller catph...@catphive.net wrote: Yes, I also recently noticed the bug in python's parser that doesn't let it handle squigly braces and the bug in the lexer that makes white space significant. I'm surprised the dev's haven't noticed this yet. It's very dangerous to make a post like

braces fixed '#{' and '#}'

2009-01-18 Thread v4vijayakumar
I saw some code where someone is really managed to import braces from __future__. ;) def test(): #{ print hello #} -- http://mail.python.org/mailman/listinfo/python-list

Re: braces fixed '#{' and '#}'

2009-01-18 Thread Brendan Miller
Yes, I also recently noticed the bug in python's parser that doesn't let it handle squigly braces and the bug in the lexer that makes white space significant. I'm surprised the dev's haven't noticed this yet. On Sat, Jan 17, 2009 at 2:09 AM, v4vijayakumar vijayakumar.subbu...@gmail.com wrote: I

Re: braces fixed '#{' and '#}'

2009-01-17 Thread Roy Smith
In article 6264e675-ddd4-446a-822a-cc82e8f87...@w1g2000prk.googlegroups.com, v4vijayakumar vijayakumar.subbu...@gmail.com wrote: I saw some code where someone is really managed to import braces from __future__. ;) def test(): #{ print hello #} That usage is obsolete. Current

Re: braces fixed '#{' and '#}'

2009-01-17 Thread Steve Holden
Roy Smith wrote: In article 6264e675-ddd4-446a-822a-cc82e8f87...@w1g2000prk.googlegroups.com, v4vijayakumar vijayakumar.subbu...@gmail.com wrote: I saw some code where someone is really managed to import braces from __future__. ;) def test(): #{ print hello #} That usage is

Re: braces fixed '#{' and '#}'

2009-01-17 Thread Roy Smith
In article mailman.7442.1232204734.3487.python-l...@python.org, Steve Holden st...@holdenweb.com wrote: Roy Smith wrote: In article 6264e675-ddd4-446a-822a-cc82e8f87...@w1g2000prk.googlegroups.com, v4vijayakumar vijayakumar.subbu...@gmail.com wrote: I saw some code where someone is

Re: braces fixed '#{' and '#}'

2009-01-17 Thread Martin P. Hellwig
Roy Smith wrote: In article mailman.7442.1232204734.3487.python-l...@python.org, Steve Holden st...@holdenweb.com wrote: Roy Smith wrote: In article 6264e675-ddd4-446a-822a-cc82e8f87...@w1g2000prk.googlegroups.com, v4vijayakumar vijayakumar.subbu...@gmail.com wrote: I saw some code where