This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author belopolsky
Recipients belopolsky, benjamin.peterson
Date 2014-04-08.04:57:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1396933044.11.0.741636744529.issue21176@psf.upfronthosting.co.za>
In-reply-to
Content
I've got to the point where I can do

>>> import ast
>>> ast.dump(ast.parse('a @ b'))
"Module(body=[Expr(value=BinOp(left=Name(id='a', ctx=Load()), op=MatMult(), right=Name(id='b', ctx=Load())))])"


I'll post a link to my bitbucket clone shortly.
History
Date User Action Args
2014-04-08 04:57:24belopolskysetrecipients: + belopolsky, benjamin.peterson
2014-04-08 04:57:24belopolskysetmessageid: <1396933044.11.0.741636744529.issue21176@psf.upfronthosting.co.za>
2014-04-08 04:57:24belopolskylinkissue21176 messages
2014-04-08 04:57:23belopolskycreate