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 candide
Recipients candide, serhiy.storchaka
Date 2015-07-11.15:23:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1436628233.38.0.197597566636.issue24612@psf.upfronthosting.co.za>
In-reply-to
Content
Expressions such as

a + not b
a * not b
+ not b
- not b

raise a SyntaxError, for instance :


>>> 0 + not 0
  File "<stdin>", line 1
    0 + not 0
          ^
SyntaxError: invalid syntax
>>> - not 0
  File "<stdin>", line 1
    - not 0
        ^
SyntaxError: invalid syntax
>>>

if the not expression is wrapped in parenthesis, expected evaluation occurs:


>>> - not 0
  File "<stdin>", line 1
    - not 0
        ^
SyntaxError: invalid syntax
>>> 0 + (not 0)
1
>>> - (not 0)
-1
>>>



The problem has been first submitted in comp.lang.python :

https://groups.google.com/forum/?hl=fr#!topic/comp.lang.python/iZiBs3tcuak


suggesting  a bug report.
History
Date User Action Args
2015-07-11 15:23:53candidesetrecipients: + candide, serhiy.storchaka
2015-07-11 15:23:53candidesetmessageid: <1436628233.38.0.197597566636.issue24612@psf.upfronthosting.co.za>
2015-07-11 15:23:53candidelinkissue24612 messages
2015-07-11 15:23:53candidecreate