Changes between Initial Version and Version 1 of Ticket #11622, comment 31


Ignore:
Timestamp:
Jun 17, 2014, 1:54:17 AM (10 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11622, comment 31

    initial v1  
    1414# suppose you intend this
    1515b = a == some_constant
    16 # but instead you type this
     16# but instead you type this, which is not a syntax error
    1717b = a = some_constant
    18 # the "yoda condition" form would be a syntax error
     18# on the other hand, the "yoda condition" form would be a syntax error
    1919b = some_constant = a
    2020# however, using parenthesis would result in a syntax error as well