Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Unified Diff: pylib/gyp/ordered_dict.py

Issue 121303002: Silence a pylint warning. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pylib/gyp/ordered_dict.py
===================================================================
--- pylib/gyp/ordered_dict.py (revision 1825)
+++ pylib/gyp/ordered_dict.py (working copy)
@@ -166,6 +166,8 @@
for k in self:
yield (k, self[k])
+ # Suppress 'OrderedDict.update: Method has no argument':
+ # pylint: disable=E0211
def update(*args, **kwds):
'''od.update(E, **F) -> None. Update od from dict/iterable E and F.
Property changes on: pylib/gyp/ordered_dict.py
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698