[Python-3000] python3000 C and C++ style coments

2007-12-23 Thread Tomy novella
Hi, I think it would be great if C style(/* */) and C++ style(//) comments appeared in python3000. At least I need C style comments and I think they would be useful for everybody because for example when I am "debugging" program(commenting code which doesnt work); much easier to comment a block o

Re: [Python-3000] python3000 C and C++ style coments

2007-12-23 Thread Aahz
On Sun, Dec 23, 2007, Tomy novella wrote: > > I think it would be great if C style(/* */) and C++ style(//) > comments appeared in python3000. This kind of discussion would be better on python-ideas. -- Aahz ([EMAIL PROTECTED]) <*> http://www.pythoncraft.com/ "Typing is cheap.

Re: [Python-3000] XOR and NOT operator syntax

2007-12-23 Thread Martin v. Löwis
> I don't see a reason why and, or, not are valid python > keywords but xor is not. Can this be added in python 3.0 for completeness? It's already there; it's spelled "!=". Regards, Martin ___ Python-3000 mailing list [email protected] http://mail.

Re: [Python-3000] python3000 C and C++ style coments

2007-12-23 Thread Martin v. Löwis
> At least I need C style comments If you repost to python-ideas (as Aahz suggested), don't forget to explain why you *need* such comments. Python is Turing-complete even without comments at all, so it is not obvious that anybody could ever need a specific spelling of comments. What problem are y

Re: [Python-3000] python3000 C and C++ style coments

2007-12-23 Thread Roberto Bonvallet
2007/12/23, Tomy novella <[EMAIL PROTECTED]>: > I think it would be great if C style(/* */) and C++ style(//) > comments appeared in python3000. In order to comment block of lines, you can enclose the code between a pair of triple quotes. // already has a meaning: it is the integer division oper