Re: [Python-Dev] surprised to "++" and "--"

2009-09-25 Thread Rob Cliffe
I don't think this is quite true. ++var and --var are legal albeit redundant expressions that equal var var++ and var-- cause a SyntaxError, as they should. Rob - Original Message - From: Wee Binn To: python-dev@python.org Sent: Wednesday, September 23, 2009 4:47 AM

Re: [Python-Dev] thinking about 2.7

2009-09-25 Thread Martin v. Löwis
> I don't know if it's possible but it would be great if the buildbot > master could send an email to a buildbot maintainer if it thinks a > buildbot is down. I think it should be possible to detect that. I wouldn't recommend immediate reaction, but rather a delayed reaction (say, 12h). Buildbot i

Re: [Python-Dev] Python 2.6.3

2009-09-25 Thread Barry Warsaw
On Sep 25, 2009, at 4:18 PM, Jesse Noller wrote: Barry - this is your call, but I think http://bugs.python.org/issue6990 should be a rel blocker too. Done. -Barry PGP.sig Description: This is a digitally signed message part ___ Python-Dev mailing

Re: [Python-Dev] thinking about 2.7

2009-09-25 Thread David Bolen
exar...@twistedmatrix.com writes: > It's easy for someone to volunteer to set up a new slave. It's even > easy to make sure it keeps running for 6 months. But it's not as easy > to keep it running indefinitely. This isn't about the software > involved (at least not entirely). It's about someon

Re: [Python-Dev] Python 2.6.3

2009-09-25 Thread Jesse Noller
On Fri, Sep 25, 2009 at 3:14 PM, Barry Warsaw wrote: > On Sep 19, 2009, at 2:51 PM, qwavel wrote: > >> What about this bug: >> http://bugs.python.org/issue3890 >> It appears to me that the SSL module is broken in the 2.6.x line on all >> platforms in one of its most common uses (non-blocking).  It

Re: [Python-Dev] Python 2.6.3

2009-09-25 Thread Barry Warsaw
On Sep 19, 2009, at 2:51 PM, qwavel wrote: What about this bug: http://bugs.python.org/issue3890 It appears to me that the SSL module is broken in the 2.6.x line on all platforms in one of its most common uses (non-blocking). It also seems that the problem and solution are well understood,

Re: [Python-Dev] help required

2009-09-25 Thread MRAB
waqas ahmad wrote: Hi, I dont know it is the right place to post this question. I need help to change one search code line . can you help me please. here is my search method code: search=re.compile("^#acl InternationalGroup.*\n", re.M).search(pagetext) if search: ret=search.gr

Re: [Python-Dev] help required

2009-09-25 Thread Michael Foord
waqas ahmad wrote: Hi, I dont know it is the right place to post this question. I need help to change one search code line . can you help me please. Hello Waqas, This is a list for the development *of* Python, not for development with Python. More appropriate lists, where hopefully there

[Python-Dev] help required

2009-09-25 Thread waqas ahmad
Hi, I dont know it is the right place to post this question. I need help to change one search code line . can you help me please. here is my search method code: search=re.compile("^#acl InternationalGroup.*\n", re.M).search(pagetext) if search: ret=search.group() here i am

[Python-Dev] Summary of Python tracker Issues

2009-09-25 Thread Python tracker
ACTIVITY SUMMARY (09/18/09 - 09/25/09) Python tracker at http://bugs.python.org/ To view or respond to any of the issues listed below, click on the issue number. Do NOT respond to this message. 2410 open (+34) / 16406 closed (+20) / 18816 total (+54) Open issues with patches: 955 Average

Re: [Python-Dev] surprised to "++" and "--"

2009-09-25 Thread Facundo Batista
2009/9/23 Wee Binn : > I know that there is no "++" or "--" operator in python, but if "var++" > or something like that in my code(you know, most of C/C++ coders may like > this),there is nothing wrong reported and program goes on just like > expected!! > This is obscure, maybe a bug. You

Re: [Python-Dev] surprised to "++" and "--"

2009-09-25 Thread Matthew Wilkes
I know that there is no "++" or "--" operator in python, but if "var++" or something like that in my code(you know, most of C/C++ coders may like this),there is nothing wrong reported and program goes on just like expected!! This is obscure, maybe a bug. Hi, Firstly, this list is

[Python-Dev] surprised to "++" and "--"

2009-09-25 Thread Wee Binn
Hi, I know that there is no "++" or "--" operator in python, but if "var++" or something like that in my code(you know, most of C/C++ coders may like this),there is nothing wrong reported and program goes on just like expected!! This is obscure, maybe a bug.__