Files
openide/python/testData/intentions/PythonDemorganLawIntentionTest/complex.py
Mikhail Golubev f7078d5a88 Cleanup in PyDemorganLawIntention and its tests
* Added missing final modifiers
* Reformat file
* Element generator is aware of language level
* Moved intention name to the bundle and properly capitalized it
* PythonDemorganLawIntentionTest extends convenient PyIntentionTestCase
and follows its conventions for test data location and naming
2015-05-25 21:37:48 +03:00

9 lines
106 B
Python

a = True
b = False
c = True
d = False
#before intention
if a and b and c or<caret> d:
print "before"