X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=pygost%2Futils.py;h=0ec91fc56fe980639b88e91743d582f14759750b;hb=d59175f7b4ae74bf32dee438fb64577140e0ac23;hp=3ed80e4b4f14ba75834279a17228a2c633ce8f80;hpb=21a30721c31912c296e1faced73e2fd0db191be9;p=pygost.git diff --git a/pygost/utils.py b/pygost/utils.py index 3ed80e4..0ec91fc 100644 --- a/pygost/utils.py +++ b/pygost/utils.py @@ -1,11 +1,10 @@ # coding: utf-8 # PyGOST -- Pure Python GOST cryptographic functions library -# Copyright (C) 2015-2019 Sergey Matveev +# Copyright (C) 2015-2020 Sergey Matveev # # 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# the Free Software Foundation, version 3 of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -20,7 +19,7 @@ from codecs import getencoder from sys import version_info -xrange = range if version_info[0] == 3 else xrange # pylint: disable=redefined-builtin +xrange = range if version_info[0] == 3 else xrange def strxor(a, b):