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 |