]> Cypherpunks.ru repositories - pygost.git/blobdiff - pygost/utils.py
Raise copyright years
[pygost.git] / pygost / utils.py
index 3f50af37c9df69e57cf212a7c1fccae79f6e9004..da903ab1e532eeff5a76a9e27607ef776976924b 100644 (file)
@@ -1,6 +1,6 @@
 # coding: utf-8
 # PyGOST -- Pure Python GOST cryptographic functions library
-# Copyright (C) 2015-2016 Sergey Matveev <stargrave@stargrave.org>
+# Copyright (C) 2015-2018 Sergey Matveev <stargrave@stargrave.org>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -20,7 +20,7 @@ from codecs import getencoder
 from sys import version_info
 
 
-xrange = range if version_info[0] == 3 else xrange
+xrange = range if version_info[0] == 3 else xrange  # pylint: disable=redefined-builtin
 
 
 def strxor(a, b):