Page MenuHomePhorge

[Python 3] Use .items() instead of .iteritems()
ClosedPublic

Authored by sicherha on Jan 8 2022, 11:39 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Sep 5, 2:29 AM
Unknown Object (File)
Tue, Sep 3, 11:36 AM
Unknown Object (File)
Sun, Aug 25, 4:08 PM
Unknown Object (File)
Thu, Aug 22, 1:18 PM
Unknown Object (File)
Thu, Aug 22, 6:28 AM
Unknown Object (File)
Mon, Aug 19, 10:43 PM
Unknown Object (File)
Sat, Aug 17, 6:45 PM
Unknown Object (File)
Sat, Aug 17, 6:45 PM
Subscribers

Details

Summary

.iteritems() was dropped in Python 3.0.

This commit may have a negative performance impact on Python 2 since
.items() returns a copy of the dictionary's item list. In Python 3,
.items() returns a view object, so no performance drop should be
noticeable there.

Diff Detail

Repository
rP pykolab
Branch
07-items
Lint
Lint Errors
SeverityLocationCodeMessage
Errorpykolab/wap_client/__init__.py:608E203PEP8 E203
Unit
No Test Coverage
Build Status
Buildable 37795
Build 15241: arc lint + arc unit

Event Timeline

sicherha created this revision.
mollekopf subscribed.

I don't think the performance impact matters for the uses we have here.

This revision is now accepted and ready to land.Jan 10 2022, 10:14 AM
This revision was landed with ongoing or failed builds.Jan 10 2022, 8:51 PM
This revision was automatically updated to reflect the committed changes.