| commit | 65f60eb9011bb2c549a6d83ae31257480368ddc5 | [log] [tgz] |
|---|---|---|
| author | Tor Norbye <tnorbye@google.com> | Wed Jul 16 18:07:37 2014 -0700 |
| committer | Tor Norbye <tnorbye@google.com> | Wed Jul 16 18:09:03 2014 -0700 |
| tree | de0dca03bec460e8797332e5f460400f5cf6485f | |
| parent | 9ea67227e8fdcf8ed37e65bb96e32767291d0f4f [diff] [blame] |
Snapshot idea/138.1029 from git://git.jetbrains.org/idea/community.git Update from idea/138.538 to idea/138.1029 Change-Id: I828f829a968439a99ec67640990c18ff7c9b58ce
diff --git a/python/testData/inspections/PyCallingNonCallableInspection/callDictSubscriptionExpression.py b/python/testData/inspections/PyCallingNonCallableInspection/callDictSubscriptionExpression.py new file mode 100644 index 0000000..4c6d765 --- /dev/null +++ b/python/testData/inspections/PyCallingNonCallableInspection/callDictSubscriptionExpression.py
@@ -0,0 +1,4 @@ +ops = {'and': all, 'or': any} +op = ops['or'] +ops['and']() +op()