We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2ca0e6f + e9d95e3 commit 1e8a2b6Copy full SHA for 1e8a2b6
cycler.py
@@ -367,8 +367,7 @@ def by_key(self):
367
# and if we care.
368
369
keys = self.keys
370
- # change this to dict comprehension when drop 2.6
371
- out = dict((k, list()) for k in keys)
+ out = {k: list() for k in keys}
372
373
for d in self:
374
for k in keys:
setup.py
@@ -12,7 +12,6 @@
12
license="BSD",
13
classifiers=['Development Status :: 4 - Beta',
14
'Programming Language :: Python :: 2',
15
- 'Programming Language :: Python :: 2.6',
16
'Programming Language :: Python :: 2.7',
17
'Programming Language :: Python :: 3',
18
'Programming Language :: Python :: 3.3',
0 commit comments