py3: avoid passing non-ints to changelog.__contains__
changelog.__contains__ compares the argument to integers. On Python 2, this results in a return value of False if passing in non-ints. On Python 3, this results in an exception if passing in non-ints.
Loading
Please register or sign in to comment