summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2018-12-29 21:43:31 +0100
committerIlya Etingof <etingof@gmail.com>2018-12-29 21:44:17 +0100
commitdf6fc9a8aae16e32f60a1ff1f42a52c8c344a993 (patch)
tree65688a5c5441d1a4594b6c15a3cded6e2a97aca1
parenta4b30dcb6c34e303129498d697fb3cd805c1e48d (diff)
downloadpyasn1-git-df6fc9a8aae16e32f60a1ff1f42a52c8c344a993.tar.gz
Release 0.4.5v0.4.5
Also extend copyright to the year 2019
-rw-r--r--CHANGES.rst3
-rw-r--r--LICENSE.rst2
-rw-r--r--README.md2
-rw-r--r--docs/source/conf.py2
-rw-r--r--pyasn1/codec/ber/decoder.py2
-rw-r--r--pyasn1/codec/ber/encoder.py2
-rw-r--r--pyasn1/codec/ber/eoo.py2
-rw-r--r--pyasn1/codec/cer/decoder.py2
-rw-r--r--pyasn1/codec/cer/encoder.py2
-rw-r--r--pyasn1/codec/der/decoder.py2
-rw-r--r--pyasn1/codec/der/encoder.py2
-rw-r--r--pyasn1/codec/native/decoder.py2
-rw-r--r--pyasn1/codec/native/encoder.py2
-rw-r--r--pyasn1/compat/binary.py2
-rw-r--r--pyasn1/compat/calling.py2
-rw-r--r--pyasn1/compat/dateandtime.py2
-rw-r--r--pyasn1/compat/integer.py2
-rw-r--r--pyasn1/compat/octets.py2
-rw-r--r--pyasn1/compat/string.py2
-rw-r--r--pyasn1/debug.py2
-rw-r--r--pyasn1/error.py2
-rw-r--r--pyasn1/type/base.py2
-rw-r--r--pyasn1/type/char.py2
-rw-r--r--pyasn1/type/constraint.py2
-rw-r--r--pyasn1/type/error.py2
-rw-r--r--pyasn1/type/namedtype.py2
-rw-r--r--pyasn1/type/namedval.py2
-rw-r--r--pyasn1/type/opentype.py2
-rw-r--r--pyasn1/type/tag.py2
-rw-r--r--pyasn1/type/tagmap.py2
-rw-r--r--pyasn1/type/univ.py2
-rw-r--r--pyasn1/type/useful.py2
-rw-r--r--setup.py2
-rw-r--r--tests/__main__.py2
-rw-r--r--tests/base.py2
-rw-r--r--tests/codec/__main__.py2
-rw-r--r--tests/codec/ber/__main__.py2
-rw-r--r--tests/codec/ber/test_decoder.py2
-rw-r--r--tests/codec/ber/test_encoder.py2
-rw-r--r--tests/codec/cer/__main__.py2
-rw-r--r--tests/codec/cer/test_decoder.py2
-rw-r--r--tests/codec/cer/test_encoder.py2
-rw-r--r--tests/codec/der/__main__.py2
-rw-r--r--tests/codec/der/test_decoder.py2
-rw-r--r--tests/codec/der/test_encoder.py2
-rw-r--r--tests/codec/native/__main__.py2
-rw-r--r--tests/codec/native/test_decoder.py2
-rw-r--r--tests/codec/native/test_encoder.py2
-rw-r--r--tests/compat/__main__.py2
-rw-r--r--tests/compat/test_binary.py2
-rw-r--r--tests/compat/test_integer.py2
-rw-r--r--tests/compat/test_octets.py2
-rw-r--r--tests/test_debug.py2
-rw-r--r--tests/type/__main__.py2
-rw-r--r--tests/type/test_char.py2
-rw-r--r--tests/type/test_constraint.py2
-rw-r--r--tests/type/test_namedtype.py2
-rw-r--r--tests/type/test_namedval.py2
-rw-r--r--tests/type/test_opentype.py2
-rw-r--r--tests/type/test_tag.py2
-rw-r--r--tests/type/test_univ.py2
-rw-r--r--tests/type/test_useful.py2
62 files changed, 63 insertions, 62 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index f17e27c..c4084f3 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,5 +1,5 @@
-Revision 0.4.5, released XX-10-2018
+Revision 0.4.5, released 29-12-2018
-----------------------------------
- Debug logging refactored for more efficiency when disabled and
@@ -8,6 +8,7 @@ Revision 0.4.5, released XX-10-2018
from codec main loop as it used to be.
- More debug logging added to BER family of codecs to ease encoding
problems troubleshooting.
+- Copyright notice extended to the year 2019
- Fixed defaulted constructed SEQUENCE component initialization.
Revision 0.4.4, released 26-07-2018
diff --git a/LICENSE.rst b/LICENSE.rst
index 011bb08..ac630e8 100644
--- a/LICENSE.rst
+++ b/LICENSE.rst
@@ -1,4 +1,4 @@
-Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/README.md b/README.md
index 4b31129..e36324b 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-2018, [Ilya Etingof](mailto:etingof@gmail.com).
+Copyright (c) 2005-2019, [Ilya Etingof](mailto:etingof@gmail.com).
All rights reserved.
diff --git a/docs/source/conf.py b/docs/source/conf.py
index ccfbd1c..6ddb378 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-2018, Ilya Etingof <etingof@gmail.com>'
+copyright = u'2005-2019, Ilya Etingof <etingof@gmail.com>'
author = u'Ilya Etingof <etingof@gmail.com>'
# The version info for the project you're documenting, acts as replacement for
diff --git a/pyasn1/codec/ber/decoder.py b/pyasn1/codec/ber/decoder.py
index 4527fd1..591bbc4 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 485811d..65b8514 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 d4cd827..b613b53 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 66572ec..5099e3c 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 fbe7cf5..788567f 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 f67d025..261bab8 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 756d9fe..5e3c571 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 b288dc2..10e2015 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 aec6bc5..50caa53 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
diff --git a/pyasn1/compat/binary.py b/pyasn1/compat/binary.py
index c38a650..addbdc9 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 c60b50d..778a3d1 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 27526ad..5e471bf 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import time
diff --git a/pyasn1/compat/integer.py b/pyasn1/compat/integer.py
index bb3d099..4b31791 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/pyasn1/compat/octets.py b/pyasn1/compat/octets.py
index a06db5d..99d23bb 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 4d8a045..b9bc8c3 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
from sys import version_info
diff --git a/pyasn1/debug.py b/pyasn1/debug.py
index f1770c1..8707aa8 100644
--- a/pyasn1/debug.py
+++ b/pyasn1/debug.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import logging
diff --git a/pyasn1/error.py b/pyasn1/error.py
index 31a221e..7f606bb 100644
--- a/pyasn1/error.py
+++ b/pyasn1/error.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
diff --git a/pyasn1/type/base.py b/pyasn1/type/base.py
index 2f4ea4c..7995118 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/pyasn1/type/char.py b/pyasn1/type/char.py
index 493badb..617b98d 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/pyasn1/type/constraint.py b/pyasn1/type/constraint.py
index 15b887d..9d8883d 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 b2056bd..80fcf3b 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 0ce18df..71f5f11 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/pyasn1/type/namedval.py b/pyasn1/type/namedval.py
index 59257e4..2233aaf 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
# ASN.1 named integers
diff --git a/pyasn1/type/opentype.py b/pyasn1/type/opentype.py
index d14ab34..d37a533 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
diff --git a/pyasn1/type/tag.py b/pyasn1/type/tag.py
index 95c226f..b46f491 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
from pyasn1 import error
diff --git a/pyasn1/type/tagmap.py b/pyasn1/type/tagmap.py
index a9d237f..e53a14d 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
from pyasn1 import error
diff --git a/pyasn1/type/univ.py b/pyasn1/type/univ.py
index 492a118..7fab69f 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import math
diff --git a/pyasn1/type/useful.py b/pyasn1/type/useful.py
index 146916d..7536b95 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import datetime
diff --git a/setup.py b/setup.py
index 8a11a34..fa0a876 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import os
diff --git a/tests/__main__.py b/tests/__main__.py
index 55ccf39..14ef28a 100644
--- a/tests/__main__.py
+++ b/tests/__main__.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
diff --git a/tests/base.py b/tests/base.py
index 645b256..07f06dc 100644
--- a/tests/base.py
+++ b/tests/base.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
diff --git a/tests/codec/__main__.py b/tests/codec/__main__.py
index 8ca201a..7a4cf20 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
diff --git a/tests/codec/ber/__main__.py b/tests/codec/ber/__main__.py
index aca8493..59c0c2b 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 e8e17f0..8b6d590 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 62ea9cc..26819bd 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/codec/cer/__main__.py b/tests/codec/cer/__main__.py
index 043de87..e3643a1 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 c0aeb78..d4e00ab 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 fd50350..d9d9212 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/codec/der/__main__.py b/tests/codec/der/__main__.py
index b253abb..bfa4ee0 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 554e2e6..a76c435 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 4c58df2..75835f2 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/codec/native/__main__.py b/tests/codec/native/__main__.py
index efd4303..640f586 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 7bdfff8..654e2cc 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# 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 8c35b55..25c9979 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/compat/__main__.py b/tests/compat/__main__.py
index 225ad90..296d70c 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
diff --git a/tests/compat/test_binary.py b/tests/compat/test_binary.py
index 4fa1d64..3e0949f 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/compat/test_integer.py b/tests/compat/test_integer.py
index 3f16f7a..04fd86a 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/compat/test_octets.py b/tests/compat/test_octets.py
index e552526..5a9bc7c 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/test_debug.py b/tests/test_debug.py
index 94a867e..9e33f93 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/type/__main__.py b/tests/type/__main__.py
index b88bff9..fcc66e7 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
diff --git a/tests/type/test_char.py b/tests/type/test_char.py
index abae715..8540a3e 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import pickle
diff --git a/tests/type/test_constraint.py b/tests/type/test_constraint.py
index 78d4e31..b5276cd 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/type/test_namedtype.py b/tests/type/test_namedtype.py
index e8fda88..7cff45e 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/type/test_namedval.py b/tests/type/test_namedval.py
index 0911d43..4ac08cf 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/type/test_opentype.py b/tests/type/test_opentype.py
index 46b5c10..ff6788f 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/type/test_tag.py b/tests/type/test_tag.py
index 10e76d5..e8dd7a3 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/type/test_univ.py b/tests/type/test_univ.py
index 357c9e5..a44f82a 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import math
diff --git a/tests/type/test_useful.py b/tests/type/test_useful.py
index c1d7832..8a5ab30 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-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import datetime