Skip to content

Commit 022167c

Browse files
committed
Bump version to 2.0.4
1 parent 3367ea5 commit 022167c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

sortedcontainers/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@
6767
]
6868

6969
__title__ = 'sortedcontainers'
70-
__version__ = '2.0.3'
71-
__build__ = 0x020003
70+
__version__ = '2.0.4'
71+
__build__ = 0x020004
7272
__author__ = 'Grant Jenks'
7373
__license__ = 'Apache 2.0'
7474
__copyright__ = '2014-2018, Grant Jenks'

sortedcontainers/sorteddict.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,11 +360,13 @@ def values(self):
360360

361361
if sys.hexversion < 0x03000000:
362362
def __make_raise_attributeerror(original, alternate):
363+
# pylint: disable=no-self-argument
363364
message = (
364365
'SortedDict.{original}() is not implemented.'
365366
' Use SortedDict.{alternate}() instead.'
366367
).format(original=original, alternate=alternate)
367368
def method(self):
369+
# pylint: disable=missing-docstring,unused-argument
368370
raise AttributeError(message)
369371
method.__name__ = original
370372
method.__doc__ = message

0 commit comments

Comments
 (0)