summaryrefslogtreecommitdiff
path: root/testsuite/E73.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-12-16 01:38:56 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-12-16 01:38:56 +0100
commite3ec49a97d8b84a3daa548574f790b6d6a6f015f (patch)
treef5b75da5f54f6002ada5a53b158c7d0f31e794ec /testsuite/E73.py
parentf87bf238186741169a62ee0e9827068c209bed6f (diff)
downloadpep8-e3ec49a97d8b84a3daa548574f790b6d6a6f015f.tar.gz
Replace the IDENTIFIER_REGEX with the isidentifier function
Diffstat (limited to 'testsuite/E73.py')
-rw-r--r--testsuite/E73.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/E73.py b/testsuite/E73.py
index aab8a24..60fcd23 100644
--- a/testsuite/E73.py
+++ b/testsuite/E73.py
@@ -8,11 +8,11 @@ while False:
#: Okay
f = object()
f.method = lambda: 'Method'
-#: Okay
+
f = {}
f['a'] = lambda x: x ** 2
-#: Okay
+
f = []
f.append(lambda x: x ** 2)
-#: Okay
+
lambda: 'no-op'