File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 67
67
]
68
68
69
69
__title__ = 'sortedcontainers'
70
- __version__ = '2.0.3 '
71
- __build__ = 0x020003
70
+ __version__ = '2.0.4 '
71
+ __build__ = 0x020004
72
72
__author__ = 'Grant Jenks'
73
73
__license__ = 'Apache 2.0'
74
74
__copyright__ = '2014-2018, Grant Jenks'
Original file line number Diff line number Diff line change @@ -360,11 +360,13 @@ def values(self):
360
360
361
361
if sys .hexversion < 0x03000000 :
362
362
def __make_raise_attributeerror (original , alternate ):
363
+ # pylint: disable=no-self-argument
363
364
message = (
364
365
'SortedDict.{original}() is not implemented.'
365
366
' Use SortedDict.{alternate}() instead.'
366
367
).format (original = original , alternate = alternate )
367
368
def method (self ):
369
+ # pylint: disable=missing-docstring,unused-argument
368
370
raise AttributeError (message )
369
371
method .__name__ = original
370
372
method .__doc__ = message
You can’t perform that action at this time.
0 commit comments