Files
openide/python/testData/intentions/PythonDemorganLawIntentionTest/notOr.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

3 lines
56 B
Python

# "DeMorgan Law" "true"
if not a <caret>or not b:
pass