mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
* 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
9 lines
116 B
Python
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"
|