From 80eb27906a6e028631245d9c2e05ddf087b08041 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Fri, 3 Jan 2020 13:47:51 -0500 Subject: [PATCH] Update copyright years --- LICENSE | 2 +- hy/_compat.py | 2 +- hy/cmdline.py | 2 +- hy/compiler.py | 2 +- hy/completer.py | 2 +- hy/contrib/botsbuildbots.hy | 2 +- hy/contrib/hy_repr.hy | 2 +- hy/contrib/loop.hy | 2 +- hy/contrib/profile.hy | 2 +- hy/contrib/sequences.hy | 2 +- hy/contrib/walk.hy | 2 +- hy/core/bootstrap.hy | 2 +- hy/core/language.hy | 2 +- hy/core/macros.hy | 2 +- hy/core/shadow.hy | 2 +- hy/errors.py | 2 +- hy/extra/anaphoric.hy | 2 +- hy/extra/reserved.hy | 2 +- hy/importer.py | 2 +- hy/lex/__init__.py | 2 +- hy/lex/exceptions.py | 2 +- hy/lex/lexer.py | 2 +- hy/lex/parser.py | 2 +- hy/macros.py | 2 +- hy/model_patterns.py | 2 +- hy/models.py | 2 +- setup.py | 2 +- tests/compilers/test_ast.py | 2 +- tests/compilers/test_compiler.py | 2 +- tests/importer/test_importer.py | 2 +- tests/importer/test_pyc.py | 2 +- tests/macros/test_macro_processor.py | 2 +- tests/macros/test_tag_macros.py | 2 +- tests/native_tests/contrib/hy_repr.hy | 2 +- tests/native_tests/contrib/loop.hy | 2 +- tests/native_tests/contrib/sequences.hy | 2 +- tests/native_tests/contrib/walk.hy | 2 +- tests/native_tests/core.hy | 2 +- tests/native_tests/defclass.hy | 2 +- tests/native_tests/extra/anaphoric.hy | 2 +- tests/native_tests/extra/reserved.hy | 2 +- tests/native_tests/language.hy | 2 +- tests/native_tests/mangling.hy | 2 +- tests/native_tests/model_patterns.hy | 2 +- tests/native_tests/native_macros.hy | 2 +- tests/native_tests/operators.hy | 2 +- tests/native_tests/py36_only_tests.hy | 2 +- tests/native_tests/py38_only_tests.hy | 2 +- tests/native_tests/quote.hy | 2 +- tests/native_tests/tag_macros.hy | 2 +- tests/native_tests/with_decorator.hy | 2 +- tests/native_tests/with_test.hy | 2 +- tests/resources/argparse_ex.hy | 2 +- tests/resources/pydemo.hy | 2 +- tests/test_bin.py | 2 +- tests/test_hy2py.py | 2 +- tests/test_lex.py | 2 +- tests/test_models.py | 2 +- 58 files changed, 58 insertions(+), 58 deletions(-) diff --git a/LICENSE b/LICENSE index 23797bc..f823fe2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2019 the authors. +Copyright 2020 the authors. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/hy/_compat.py b/hy/_compat.py index 70a3187..5ef38fb 100644 --- a/hy/_compat.py +++ b/hy/_compat.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/cmdline.py b/hy/cmdline.py index 1df8cb0..b9ffcdb 100644 --- a/hy/cmdline.py +++ b/hy/cmdline.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/compiler.py b/hy/compiler.py index 7bfcb53..f219dac 100755 --- a/hy/compiler.py +++ b/hy/compiler.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/completer.py b/hy/completer.py index 34308ba..b32ecc7 100644 --- a/hy/completer.py +++ b/hy/completer.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/contrib/botsbuildbots.hy b/hy/contrib/botsbuildbots.hy index 5088cca..a2efc0e 100644 --- a/hy/contrib/botsbuildbots.hy +++ b/hy/contrib/botsbuildbots.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/contrib/hy_repr.hy b/hy/contrib/hy_repr.hy index a3c7631..9c1bf25 100644 --- a/hy/contrib/hy_repr.hy +++ b/hy/contrib/hy_repr.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/contrib/loop.hy b/hy/contrib/loop.hy index b1cb2da..c3060ba 100644 --- a/hy/contrib/loop.hy +++ b/hy/contrib/loop.hy @@ -1,5 +1,5 @@ ;;; Hy tail-call optimization -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/contrib/profile.hy b/hy/contrib/profile.hy index cea3435..9e3d855 100644 --- a/hy/contrib/profile.hy +++ b/hy/contrib/profile.hy @@ -1,5 +1,5 @@ ;;; Hy profiling macros -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/contrib/sequences.hy b/hy/contrib/sequences.hy index 01226c9..954cd3c 100644 --- a/hy/contrib/sequences.hy +++ b/hy/contrib/sequences.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/contrib/walk.hy b/hy/contrib/walk.hy index 691645e..2f7d31c 100644 --- a/hy/contrib/walk.hy +++ b/hy/contrib/walk.hy @@ -1,5 +1,5 @@ ;;; Hy AST walker -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/core/bootstrap.hy b/hy/core/bootstrap.hy index b8da6c7..d406075 100644 --- a/hy/core/bootstrap.hy +++ b/hy/core/bootstrap.hy @@ -1,5 +1,5 @@ ;;; Hy bootstrap macros -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/core/language.hy b/hy/core/language.hy index fa82185..4fed7ee 100644 --- a/hy/core/language.hy +++ b/hy/core/language.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/core/macros.hy b/hy/core/macros.hy index e8cda1d..22b1812 100644 --- a/hy/core/macros.hy +++ b/hy/core/macros.hy @@ -1,5 +1,5 @@ ;;; Hy core macros -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/core/shadow.hy b/hy/core/shadow.hy index 85e3f56..8f8b00e 100644 --- a/hy/core/shadow.hy +++ b/hy/core/shadow.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/errors.py b/hy/errors.py index c19cf6c..3d320cb 100644 --- a/hy/errors.py +++ b/hy/errors.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. import os diff --git a/hy/extra/anaphoric.hy b/hy/extra/anaphoric.hy index 7b48146..6a7ec7a 100644 --- a/hy/extra/anaphoric.hy +++ b/hy/extra/anaphoric.hy @@ -1,5 +1,5 @@ ;;; Hy anaphoric macros -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/extra/reserved.hy b/hy/extra/reserved.hy index 81d8a81..d0a78f5 100644 --- a/hy/extra/reserved.hy +++ b/hy/extra/reserved.hy @@ -1,5 +1,5 @@ ;;; Get a frozenset of Hy reserved words -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/hy/importer.py b/hy/importer.py index bd0f544..d1f6645 100644 --- a/hy/importer.py +++ b/hy/importer.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/lex/__init__.py b/hy/lex/__init__.py index c32742e..9a58e92 100644 --- a/hy/lex/__init__.py +++ b/hy/lex/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/lex/exceptions.py b/hy/lex/exceptions.py index 449119a..0e5322b 100644 --- a/hy/lex/exceptions.py +++ b/hy/lex/exceptions.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. from hy.errors import HySyntaxError diff --git a/hy/lex/lexer.py b/hy/lex/lexer.py index fddfe4b..5e92cce 100755 --- a/hy/lex/lexer.py +++ b/hy/lex/lexer.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/lex/parser.py b/hy/lex/parser.py index f3edb0e..306bf3e 100755 --- a/hy/lex/parser.py +++ b/hy/lex/parser.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/macros.py b/hy/macros.py index 66fc3ff..27a669c 100644 --- a/hy/macros.py +++ b/hy/macros.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. import sys diff --git a/hy/model_patterns.py b/hy/model_patterns.py index 45124ba..637526f 100644 --- a/hy/model_patterns.py +++ b/hy/model_patterns.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/hy/models.py b/hy/models.py index 6f42815..6c530eb 100644 --- a/hy/models.py +++ b/hy/models.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. from __future__ import unicode_literals diff --git a/setup.py b/setup.py index eaebf95..bd6510b 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/compilers/test_ast.py b/tests/compilers/test_ast.py index e5e1d2d..be46303 100644 --- a/tests/compilers/test_ast.py +++ b/tests/compilers/test_ast.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/compilers/test_compiler.py b/tests/compilers/test_compiler.py index 879bd58..0472866 100644 --- a/tests/compilers/test_compiler.py +++ b/tests/compilers/test_compiler.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/importer/test_importer.py b/tests/importer/test_importer.py index aba89e4..90806d7 100644 --- a/tests/importer/test_importer.py +++ b/tests/importer/test_importer.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/importer/test_pyc.py b/tests/importer/test_pyc.py index 3d903a6..922a15e 100644 --- a/tests/importer/test_pyc.py +++ b/tests/importer/test_pyc.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/macros/test_macro_processor.py b/tests/macros/test_macro_processor.py index 134bd5b..16b7523 100644 --- a/tests/macros/test_macro_processor.py +++ b/tests/macros/test_macro_processor.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/macros/test_tag_macros.py b/tests/macros/test_tag_macros.py index 51f57e8..690f007 100644 --- a/tests/macros/test_tag_macros.py +++ b/tests/macros/test_tag_macros.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/native_tests/contrib/hy_repr.hy b/tests/native_tests/contrib/hy_repr.hy index 3fa807a..cdb4caa 100644 --- a/tests/native_tests/contrib/hy_repr.hy +++ b/tests/native_tests/contrib/hy_repr.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/contrib/loop.hy b/tests/native_tests/contrib/loop.hy index f5c425c..8458a1c 100644 --- a/tests/native_tests/contrib/loop.hy +++ b/tests/native_tests/contrib/loop.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/contrib/sequences.hy b/tests/native_tests/contrib/sequences.hy index 808cf02..daa3fb1 100644 --- a/tests/native_tests/contrib/sequences.hy +++ b/tests/native_tests/contrib/sequences.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/contrib/walk.hy b/tests/native_tests/contrib/walk.hy index 08922bf..fb92f6c 100644 --- a/tests/native_tests/contrib/walk.hy +++ b/tests/native_tests/contrib/walk.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/core.hy b/tests/native_tests/core.hy index e5aad68..17f2451 100644 --- a/tests/native_tests/core.hy +++ b/tests/native_tests/core.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/defclass.hy b/tests/native_tests/defclass.hy index e27a20e..28a014a 100644 --- a/tests/native_tests/defclass.hy +++ b/tests/native_tests/defclass.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/extra/anaphoric.hy b/tests/native_tests/extra/anaphoric.hy index 1177ab0..5dd9da9 100644 --- a/tests/native_tests/extra/anaphoric.hy +++ b/tests/native_tests/extra/anaphoric.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/extra/reserved.hy b/tests/native_tests/extra/reserved.hy index b1b9c7a..468310c 100644 --- a/tests/native_tests/extra/reserved.hy +++ b/tests/native_tests/extra/reserved.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/language.hy b/tests/native_tests/language.hy index 37dce9e..7732207 100644 --- a/tests/native_tests/language.hy +++ b/tests/native_tests/language.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/mangling.hy b/tests/native_tests/mangling.hy index 22c1942..c0020b8 100644 --- a/tests/native_tests/mangling.hy +++ b/tests/native_tests/mangling.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/model_patterns.hy b/tests/native_tests/model_patterns.hy index ce9b835..21018df 100644 --- a/tests/native_tests/model_patterns.hy +++ b/tests/native_tests/model_patterns.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/native_macros.hy b/tests/native_tests/native_macros.hy index d15a686..28f14a5 100644 --- a/tests/native_tests/native_macros.hy +++ b/tests/native_tests/native_macros.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/operators.hy b/tests/native_tests/operators.hy index 831c292..363a783 100644 --- a/tests/native_tests/operators.hy +++ b/tests/native_tests/operators.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/py36_only_tests.hy b/tests/native_tests/py36_only_tests.hy index 9b112e5..158a7b6 100644 --- a/tests/native_tests/py36_only_tests.hy +++ b/tests/native_tests/py36_only_tests.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/py38_only_tests.hy b/tests/native_tests/py38_only_tests.hy index ca337a5..64a804d 100644 --- a/tests/native_tests/py38_only_tests.hy +++ b/tests/native_tests/py38_only_tests.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/quote.hy b/tests/native_tests/quote.hy index 9560bcc..923c901 100644 --- a/tests/native_tests/quote.hy +++ b/tests/native_tests/quote.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/tag_macros.hy b/tests/native_tests/tag_macros.hy index 34d6592..dfe126f 100644 --- a/tests/native_tests/tag_macros.hy +++ b/tests/native_tests/tag_macros.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/with_decorator.hy b/tests/native_tests/with_decorator.hy index fa6abc1..65d1f9a 100644 --- a/tests/native_tests/with_decorator.hy +++ b/tests/native_tests/with_decorator.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/native_tests/with_test.hy b/tests/native_tests/with_test.hy index 8a474a3..c9252f7 100644 --- a/tests/native_tests/with_test.hy +++ b/tests/native_tests/with_test.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/resources/argparse_ex.hy b/tests/resources/argparse_ex.hy index 70aed9b..058947b 100755 --- a/tests/resources/argparse_ex.hy +++ b/tests/resources/argparse_ex.hy @@ -1,5 +1,5 @@ #!/usr/bin/env hy -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/resources/pydemo.hy b/tests/resources/pydemo.hy index 5774dac..91fb8bc 100644 --- a/tests/resources/pydemo.hy +++ b/tests/resources/pydemo.hy @@ -1,4 +1,4 @@ -;; Copyright 2019 the authors. +;; Copyright 2020 the authors. ;; This file is part of Hy, which is free software licensed under the Expat ;; license. See the LICENSE. diff --git a/tests/test_bin.py b/tests/test_bin.py index 1af7ffe..6c8e51c 100644 --- a/tests/test_bin.py +++ b/tests/test_bin.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/test_hy2py.py b/tests/test_hy2py.py index f774b7d..d062674 100644 --- a/tests/test_hy2py.py +++ b/tests/test_hy2py.py @@ -1,5 +1,5 @@ # -*- encoding: utf-8 -*- -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. diff --git a/tests/test_lex.py b/tests/test_lex.py index 304f69a..1d1474b 100644 --- a/tests/test_lex.py +++ b/tests/test_lex.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE. import sys diff --git a/tests/test_models.py b/tests/test_models.py index 3670974..b76d7a5 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -1,4 +1,4 @@ -# Copyright 2019 the authors. +# Copyright 2020 the authors. # This file is part of Hy, which is free software licensed under the Expat # license. See the LICENSE.