Matt Wheeler wrote:

>> as the title says. has @ been used in projects?

numpy, probably?

> Strictly speaking, @ is not an operator.

In other words it's not popular, not even widely known.

Compare:

$ python3.4 -c '[email protected]'
  File "<string>", line 1
    [email protected]
             ^
SyntaxError: invalid syntax
$ python3.5 -c '[email protected]'
Traceback (most recent call last):
  File "<string>", line 1, in <module>
NameError: name '__peter__' is not defined

Starting with 3.5 my email address is valid Python syntax. Now I'm waiting 
for the __peter__ builtin ;)

-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to