From de14a730f4bfc054bcd2cfc52da8c8a2b359e089 Mon Sep 17 00:00:00 2001 From: Ilya Etingof Date: Thu, 29 Mar 2018 08:11:28 +0200 Subject: copyright years extended --- CHANGES.rst | 5 +++++ LICENSE.rst | 2 +- README.md | 2 +- docs/source/conf.py | 2 +- pyasn1/__init__.py | 2 +- pyasn1/codec/ber/decoder.py | 2 +- pyasn1/codec/ber/encoder.py | 2 +- pyasn1/codec/ber/eoo.py | 2 +- pyasn1/codec/cer/decoder.py | 2 +- pyasn1/codec/cer/encoder.py | 2 +- pyasn1/codec/der/decoder.py | 2 +- pyasn1/codec/der/encoder.py | 2 +- pyasn1/codec/native/decoder.py | 2 +- pyasn1/codec/native/encoder.py | 2 +- pyasn1/compat/binary.py | 2 +- pyasn1/compat/calling.py | 2 +- pyasn1/compat/dateandtime.py | 2 +- pyasn1/compat/integer.py | 2 +- pyasn1/compat/octets.py | 2 +- pyasn1/compat/string.py | 2 +- pyasn1/debug.py | 2 +- pyasn1/error.py | 2 +- pyasn1/type/base.py | 2 +- pyasn1/type/char.py | 2 +- pyasn1/type/constraint.py | 2 +- pyasn1/type/error.py | 2 +- pyasn1/type/namedtype.py | 2 +- pyasn1/type/namedval.py | 2 +- pyasn1/type/opentype.py | 2 +- pyasn1/type/tag.py | 2 +- pyasn1/type/tagmap.py | 2 +- pyasn1/type/univ.py | 2 +- pyasn1/type/useful.py | 2 +- setup.py | 2 +- tests/__main__.py | 2 +- tests/base.py | 2 +- tests/codec/__main__.py | 2 +- tests/codec/ber/__main__.py | 2 +- tests/codec/ber/test_decoder.py | 2 +- tests/codec/ber/test_encoder.py | 2 +- tests/codec/cer/__main__.py | 2 +- tests/codec/cer/test_decoder.py | 2 +- tests/codec/cer/test_encoder.py | 2 +- tests/codec/der/__main__.py | 2 +- tests/codec/der/test_decoder.py | 2 +- tests/codec/der/test_encoder.py | 2 +- tests/codec/native/__main__.py | 2 +- tests/codec/native/test_decoder.py | 2 +- tests/codec/native/test_encoder.py | 2 +- tests/compat/__main__.py | 2 +- tests/compat/test_binary.py | 2 +- tests/compat/test_integer.py | 2 +- tests/compat/test_octets.py | 2 +- tests/test_debug.py | 2 +- tests/type/__main__.py | 2 +- tests/type/test_char.py | 2 +- tests/type/test_constraint.py | 2 +- tests/type/test_namedtype.py | 2 +- tests/type/test_namedval.py | 2 +- tests/type/test_opentype.py | 2 +- tests/type/test_tag.py | 2 +- tests/type/test_univ.py | 2 +- tests/type/test_useful.py | 2 +- 63 files changed, 67 insertions(+), 62 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 031a4b8..4dddd82 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,4 +1,9 @@ +Revision 0.4.3, released XX-XX-2018 +----------------------------------- + +- Copyright notice extended to the year 2018 + Revision 0.4.2, released 23-11-2017 ----------------------------------- diff --git a/LICENSE.rst b/LICENSE.rst index 02b45c4..011bb08 100644 --- a/LICENSE.rst +++ b/LICENSE.rst @@ -1,4 +1,4 @@ -Copyright (c) 2005-2017, Ilya Etingof +Copyright (c) 2005-2018, Ilya Etingof All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.md b/README.md index 99cfad3..db870f4 100644 --- a/README.md +++ b/README.md @@ -180,5 +180,5 @@ post your question [on Stack Overflow](https://stackoverflow.com/questions/ask) or try browsing pyasn1 [mailing list archives](https://sourceforge.net/p/pyasn1/mailman/pyasn1-users/). -Copyright (c) 2005-2017, [Ilya Etingof](mailto:etingof@gmail.com). +Copyright (c) 2005-2018, [Ilya Etingof](mailto:etingof@gmail.com). All rights reserved. diff --git a/docs/source/conf.py b/docs/source/conf.py index 1e91e20..ccfbd1c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -47,7 +47,7 @@ master_doc = 'contents' # General information about the project. project = u'ASN.1 types and codecs' -copyright = u'2005-2017, Ilya Etingof ' +copyright = u'2005-2018, Ilya Etingof ' author = u'Ilya Etingof ' # The version info for the project you're documenting, acts as replacement for diff --git a/pyasn1/__init__.py b/pyasn1/__init__.py index 4d95836..71bb22f 100644 --- a/pyasn1/__init__.py +++ b/pyasn1/__init__.py @@ -1,7 +1,7 @@ import sys # https://www.python.org/dev/peps/pep-0396/ -__version__ = '0.4.2' +__version__ = '0.4.3' if sys.version_info[:2] < (2, 4): raise RuntimeError('PyASN1 requires Python 2.4 or later') diff --git a/pyasn1/codec/ber/decoder.py b/pyasn1/codec/ber/decoder.py index fe765e3..a27b3e0 100644 --- a/pyasn1/codec/ber/decoder.py +++ b/pyasn1/codec/ber/decoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from pyasn1 import debug diff --git a/pyasn1/codec/ber/encoder.py b/pyasn1/codec/ber/encoder.py index 28c5071..0094b22 100644 --- a/pyasn1/codec/ber/encoder.py +++ b/pyasn1/codec/ber/encoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from pyasn1 import debug diff --git a/pyasn1/codec/ber/eoo.py b/pyasn1/codec/ber/eoo.py index 044e2df..d4cd827 100644 --- a/pyasn1/codec/ber/eoo.py +++ b/pyasn1/codec/ber/eoo.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from pyasn1.type import base diff --git a/pyasn1/codec/cer/decoder.py b/pyasn1/codec/cer/decoder.py index 741ff01..66572ec 100644 --- a/pyasn1/codec/cer/decoder.py +++ b/pyasn1/codec/cer/decoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from pyasn1 import error diff --git a/pyasn1/codec/cer/encoder.py b/pyasn1/codec/cer/encoder.py index 8bf77d2..768d3c1 100644 --- a/pyasn1/codec/cer/encoder.py +++ b/pyasn1/codec/cer/encoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from pyasn1 import error diff --git a/pyasn1/codec/der/decoder.py b/pyasn1/codec/der/decoder.py index 7cc4ab5..f67d025 100644 --- a/pyasn1/codec/der/decoder.py +++ b/pyasn1/codec/der/decoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from pyasn1.codec.cer import decoder diff --git a/pyasn1/codec/der/encoder.py b/pyasn1/codec/der/encoder.py index 682860b..756d9fe 100644 --- a/pyasn1/codec/der/encoder.py +++ b/pyasn1/codec/der/encoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from pyasn1 import error diff --git a/pyasn1/codec/native/decoder.py b/pyasn1/codec/native/decoder.py index fe250fb..78fcda6 100644 --- a/pyasn1/codec/native/decoder.py +++ b/pyasn1/codec/native/decoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from pyasn1 import debug diff --git a/pyasn1/codec/native/encoder.py b/pyasn1/codec/native/encoder.py index 9f20fe1..87e50f2 100644 --- a/pyasn1/codec/native/encoder.py +++ b/pyasn1/codec/native/encoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # try: diff --git a/pyasn1/compat/binary.py b/pyasn1/compat/binary.py index 43d1b99..c38a650 100644 --- a/pyasn1/compat/binary.py +++ b/pyasn1/compat/binary.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from sys import version_info diff --git a/pyasn1/compat/calling.py b/pyasn1/compat/calling.py index 1fe307b..c60b50d 100644 --- a/pyasn1/compat/calling.py +++ b/pyasn1/compat/calling.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from sys import version_info diff --git a/pyasn1/compat/dateandtime.py b/pyasn1/compat/dateandtime.py index abb8754..27526ad 100644 --- a/pyasn1/compat/dateandtime.py +++ b/pyasn1/compat/dateandtime.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import time diff --git a/pyasn1/compat/integer.py b/pyasn1/compat/integer.py index b109340..bb3d099 100644 --- a/pyasn1/compat/integer.py +++ b/pyasn1/compat/integer.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/pyasn1/compat/octets.py b/pyasn1/compat/octets.py index 23c285d..a06db5d 100644 --- a/pyasn1/compat/octets.py +++ b/pyasn1/compat/octets.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from sys import version_info diff --git a/pyasn1/compat/string.py b/pyasn1/compat/string.py index 7b28519..4d8a045 100644 --- a/pyasn1/compat/string.py +++ b/pyasn1/compat/string.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from sys import version_info diff --git a/pyasn1/debug.py b/pyasn1/debug.py index fcf1ae2..ab72fa8 100644 --- a/pyasn1/debug.py +++ b/pyasn1/debug.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import logging diff --git a/pyasn1/error.py b/pyasn1/error.py index 2cbbbc9..c05e65c 100644 --- a/pyasn1/error.py +++ b/pyasn1/error.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # diff --git a/pyasn1/type/base.py b/pyasn1/type/base.py index e42bad1..adaab22 100644 --- a/pyasn1/type/base.py +++ b/pyasn1/type/base.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/pyasn1/type/char.py b/pyasn1/type/char.py index 8986b70..493badb 100644 --- a/pyasn1/type/char.py +++ b/pyasn1/type/char.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/pyasn1/type/constraint.py b/pyasn1/type/constraint.py index b5b06cd..a704331 100644 --- a/pyasn1/type/constraint.py +++ b/pyasn1/type/constraint.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # # Original concept and code by Mike C. Fletcher. diff --git a/pyasn1/type/error.py b/pyasn1/type/error.py index 3325962..b2056bd 100644 --- a/pyasn1/type/error.py +++ b/pyasn1/type/error.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from pyasn1.error import PyAsn1Error diff --git a/pyasn1/type/namedtype.py b/pyasn1/type/namedtype.py index 93f0b7e..f162d19 100644 --- a/pyasn1/type/namedtype.py +++ b/pyasn1/type/namedtype.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/pyasn1/type/namedval.py b/pyasn1/type/namedval.py index 93cd76f..59257e4 100644 --- a/pyasn1/type/namedval.py +++ b/pyasn1/type/namedval.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # # ASN.1 named integers diff --git a/pyasn1/type/opentype.py b/pyasn1/type/opentype.py index 46e7d45..d14ab34 100644 --- a/pyasn1/type/opentype.py +++ b/pyasn1/type/opentype.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # diff --git a/pyasn1/type/tag.py b/pyasn1/type/tag.py index b14b5e1..95c226f 100644 --- a/pyasn1/type/tag.py +++ b/pyasn1/type/tag.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from pyasn1 import error diff --git a/pyasn1/type/tagmap.py b/pyasn1/type/tagmap.py index 2e266b6..a9d237f 100644 --- a/pyasn1/type/tagmap.py +++ b/pyasn1/type/tagmap.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # from pyasn1 import error diff --git a/pyasn1/type/univ.py b/pyasn1/type/univ.py index 3aaa300..a19f6ba 100644 --- a/pyasn1/type/univ.py +++ b/pyasn1/type/univ.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import math diff --git a/pyasn1/type/useful.py b/pyasn1/type/useful.py index 54961d7..145713f 100644 --- a/pyasn1/type/useful.py +++ b/pyasn1/type/useful.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import datetime diff --git a/setup.py b/setup.py index 628daae..cea48b9 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import os diff --git a/tests/__main__.py b/tests/__main__.py index 90d1bd7..55ccf39 100644 --- a/tests/__main__.py +++ b/tests/__main__.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # try: diff --git a/tests/base.py b/tests/base.py index ccb0db8..645b256 100644 --- a/tests/base.py +++ b/tests/base.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # diff --git a/tests/codec/__main__.py b/tests/codec/__main__.py index 1894b32..8ca201a 100644 --- a/tests/codec/__main__.py +++ b/tests/codec/__main__.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # try: diff --git a/tests/codec/ber/__main__.py b/tests/codec/ber/__main__.py index bd69d35..aca8493 100644 --- a/tests/codec/ber/__main__.py +++ b/tests/codec/ber/__main__.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # try: diff --git a/tests/codec/ber/test_decoder.py b/tests/codec/ber/test_decoder.py index 8b041ca..d456949 100644 --- a/tests/codec/ber/test_decoder.py +++ b/tests/codec/ber/test_decoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/codec/ber/test_encoder.py b/tests/codec/ber/test_encoder.py index fed207e..81368a9 100644 --- a/tests/codec/ber/test_encoder.py +++ b/tests/codec/ber/test_encoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/codec/cer/__main__.py b/tests/codec/cer/__main__.py index 6ac1423..043de87 100644 --- a/tests/codec/cer/__main__.py +++ b/tests/codec/cer/__main__.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # try: diff --git a/tests/codec/cer/test_decoder.py b/tests/codec/cer/test_decoder.py index 810c00f..c0aeb78 100644 --- a/tests/codec/cer/test_decoder.py +++ b/tests/codec/cer/test_decoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/codec/cer/test_encoder.py b/tests/codec/cer/test_encoder.py index 2adc5ed..fd50350 100644 --- a/tests/codec/cer/test_encoder.py +++ b/tests/codec/cer/test_encoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/codec/der/__main__.py b/tests/codec/der/__main__.py index df354c9..b253abb 100644 --- a/tests/codec/der/__main__.py +++ b/tests/codec/der/__main__.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # try: diff --git a/tests/codec/der/test_decoder.py b/tests/codec/der/test_decoder.py index 82718c7..554e2e6 100644 --- a/tests/codec/der/test_decoder.py +++ b/tests/codec/der/test_decoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/codec/der/test_encoder.py b/tests/codec/der/test_encoder.py index a9c00a4..4c58df2 100644 --- a/tests/codec/der/test_encoder.py +++ b/tests/codec/der/test_encoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/codec/native/__main__.py b/tests/codec/native/__main__.py index b148325..efd4303 100644 --- a/tests/codec/native/__main__.py +++ b/tests/codec/native/__main__.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # try: diff --git a/tests/codec/native/test_decoder.py b/tests/codec/native/test_decoder.py index b711e96..7bdfff8 100644 --- a/tests/codec/native/test_decoder.py +++ b/tests/codec/native/test_decoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/codec/native/test_encoder.py b/tests/codec/native/test_encoder.py index d24bdc3..8c35b55 100644 --- a/tests/codec/native/test_encoder.py +++ b/tests/codec/native/test_encoder.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/compat/__main__.py b/tests/compat/__main__.py index b25bd87..225ad90 100644 --- a/tests/compat/__main__.py +++ b/tests/compat/__main__.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # try: diff --git a/tests/compat/test_binary.py b/tests/compat/test_binary.py index bf8b235..4fa1d64 100644 --- a/tests/compat/test_binary.py +++ b/tests/compat/test_binary.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/compat/test_integer.py b/tests/compat/test_integer.py index adf6d23..3f16f7a 100644 --- a/tests/compat/test_integer.py +++ b/tests/compat/test_integer.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/compat/test_octets.py b/tests/compat/test_octets.py index b40b151..e552526 100644 --- a/tests/compat/test_octets.py +++ b/tests/compat/test_octets.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/test_debug.py b/tests/test_debug.py index 0dd6bed..94a867e 100644 --- a/tests/test_debug.py +++ b/tests/test_debug.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/type/__main__.py b/tests/type/__main__.py index 12ff7c3..b88bff9 100644 --- a/tests/type/__main__.py +++ b/tests/type/__main__.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # try: diff --git a/tests/type/test_char.py b/tests/type/test_char.py index a84b4c3..abae715 100644 --- a/tests/type/test_char.py +++ b/tests/type/test_char.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import pickle diff --git a/tests/type/test_constraint.py b/tests/type/test_constraint.py index a502b1a..2cdc66e 100644 --- a/tests/type/test_constraint.py +++ b/tests/type/test_constraint.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/type/test_namedtype.py b/tests/type/test_namedtype.py index 71a15b4..e8fda88 100644 --- a/tests/type/test_namedtype.py +++ b/tests/type/test_namedtype.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/type/test_namedval.py b/tests/type/test_namedval.py index fb93744..0911d43 100644 --- a/tests/type/test_namedval.py +++ b/tests/type/test_namedval.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/type/test_opentype.py b/tests/type/test_opentype.py index f2a4d2f..46b5c10 100644 --- a/tests/type/test_opentype.py +++ b/tests/type/test_opentype.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/type/test_tag.py b/tests/type/test_tag.py index 815ee27..e0cf483 100644 --- a/tests/type/test_tag.py +++ b/tests/type/test_tag.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import sys diff --git a/tests/type/test_univ.py b/tests/type/test_univ.py index dc7d2cc..ab44f3a 100644 --- a/tests/type/test_univ.py +++ b/tests/type/test_univ.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import math diff --git a/tests/type/test_useful.py b/tests/type/test_useful.py index c480f43..8137de3 100644 --- a/tests/type/test_useful.py +++ b/tests/type/test_useful.py @@ -1,7 +1,7 @@ # # This file is part of pyasn1 software. # -# Copyright (c) 2005-2017, Ilya Etingof +# Copyright (c) 2005-2018, Ilya Etingof # License: http://snmplabs.com/pyasn1/license.html # import datetime -- cgit v1.2.3