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

2009-09-25 Thread Rob Cliffe
4:47 AM Subject: [Python-Dev] surprised to "++" and "--" 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 nothin

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.__