Files
openide/python/testData/intentions/PythonDemorganLawIntentionTest/complex_after.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
116 B
Python

a = True
b = False
c = True
d = False
#before intention
if not (not (a and b and c) and not d):
print "before"