[stem/master] Update copyright dates for 2020

commit e9b2536859b86eed554618e6b41ba1442a994d4b Author: Damian Johnson <atagar@torproject.org> Date: Thu Jan 2 11:35:10 2020 -0800 Update copyright dates for 2020 Happy new year! Bumping the dates for 2020... % find . -type f -iname '*.py' -exec sed -i 's/-2019/-2020/g' "{}" +; % grep -R "# Copyright 2019," ./* --- cache_fallback_directories.py | 2 +- cache_manual.py | 2 +- run_tests.py | 2 +- setup.py | 2 +- stem/__init__.py | 2 +- stem/client/__init__.py | 2 +- stem/client/cell.py | 2 +- stem/client/datatype.py | 2 +- stem/connection.py | 2 +- stem/control.py | 2 +- stem/descriptor/__init__.py | 2 +- stem/descriptor/bandwidth_file.py | 2 +- stem/descriptor/certificate.py | 2 +- stem/descriptor/collector.py | 2 +- stem/descriptor/export.py | 2 +- stem/descriptor/extrainfo_descriptor.py | 2 +- stem/descriptor/hidden_service.py | 2 +- stem/descriptor/microdescriptor.py | 2 +- stem/descriptor/networkstatus.py | 2 +- stem/descriptor/reader.py | 2 +- stem/descriptor/remote.py | 2 +- stem/descriptor/router_status_entry.py | 2 +- stem/descriptor/server_descriptor.py | 2 +- stem/descriptor/tordnsel.py | 2 +- stem/directory.py | 2 +- stem/exit_policy.py | 2 +- stem/interpreter/__init__.py | 2 +- stem/interpreter/arguments.py | 2 +- stem/interpreter/autocomplete.py | 2 +- stem/interpreter/commands.py | 2 +- stem/interpreter/help.py | 2 +- stem/manual.py | 2 +- stem/prereq.py | 2 +- stem/process.py | 2 +- stem/response/__init__.py | 2 +- stem/response/add_onion.py | 2 +- stem/response/authchallenge.py | 2 +- stem/response/events.py | 2 +- stem/response/getconf.py | 2 +- stem/response/getinfo.py | 2 +- stem/response/mapaddress.py | 2 +- stem/response/protocolinfo.py | 2 +- stem/socket.py | 2 +- stem/util/__init__.py | 2 +- stem/util/conf.py | 2 +- stem/util/connection.py | 2 +- stem/util/enum.py | 2 +- stem/util/log.py | 2 +- stem/util/proc.py | 2 +- stem/util/str_tools.py | 2 +- stem/util/system.py | 2 +- stem/util/term.py | 2 +- stem/util/test_tools.py | 2 +- stem/util/tor_tools.py | 2 +- stem/version.py | 2 +- test/__init__.py | 2 +- test/arguments.py | 2 +- test/network.py | 2 +- test/output.py | 2 +- test/require.py | 2 +- test/runner.py | 2 +- test/task.py | 2 +- 62 files changed, 62 insertions(+), 62 deletions(-) diff --git a/cache_fallback_directories.py b/cache_fallback_directories.py index 05d7f827..cb413c07 100755 --- a/cache_fallback_directories.py +++ b/cache_fallback_directories.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2016-2019, Damian Johnson and The Tor Project +# Copyright 2016-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/cache_manual.py b/cache_manual.py index 8e198226..7fe6ea70 100755 --- a/cache_manual.py +++ b/cache_manual.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2015-2019, Damian Johnson and The Tor Project +# Copyright 2015-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/run_tests.py b/run_tests.py index a3a90d04..8d7ea45e 100755 --- a/run_tests.py +++ b/run_tests.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/setup.py b/setup.py index dd487558..8b6f1e4b 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information # # Release Checklist diff --git a/stem/__init__.py b/stem/__init__.py index 9f30b785..66bc24b5 100644 --- a/stem/__init__.py +++ b/stem/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/client/__init__.py b/stem/client/__init__.py index 76b5addc..307bd4e4 100644 --- a/stem/client/__init__.py +++ b/stem/client/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2018-2019, Damian Johnson and The Tor Project +# Copyright 2018-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/client/cell.py b/stem/client/cell.py index 4b0f9fa1..57a71749 100644 --- a/stem/client/cell.py +++ b/stem/client/cell.py @@ -1,4 +1,4 @@ -# Copyright 2018-2019, Damian Johnson and The Tor Project +# Copyright 2018-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/client/datatype.py b/stem/client/datatype.py index ac417b83..5de5e445 100644 --- a/stem/client/datatype.py +++ b/stem/client/datatype.py @@ -1,4 +1,4 @@ -# Copyright 2018-2019, Damian Johnson and The Tor Project +# Copyright 2018-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/connection.py b/stem/connection.py index 90997fb9..140cff2e 100644 --- a/stem/connection.py +++ b/stem/connection.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/control.py b/stem/control.py index 42736486..56567467 100644 --- a/stem/control.py +++ b/stem/control.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/descriptor/__init__.py b/stem/descriptor/__init__.py index 49a4d4b5..c97db183 100644 --- a/stem/descriptor/__init__.py +++ b/stem/descriptor/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/descriptor/bandwidth_file.py b/stem/descriptor/bandwidth_file.py index 9fd44859..658f02b8 100644 --- a/stem/descriptor/bandwidth_file.py +++ b/stem/descriptor/bandwidth_file.py @@ -1,4 +1,4 @@ -# Copyright 2019, Damian Johnson and The Tor Project +# Copyright 2019-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/descriptor/certificate.py b/stem/descriptor/certificate.py index fe94b52d..28a05181 100644 --- a/stem/descriptor/certificate.py +++ b/stem/descriptor/certificate.py @@ -1,4 +1,4 @@ -# Copyright 2017-2019, Damian Johnson and The Tor Project +# Copyright 2017-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/descriptor/collector.py b/stem/descriptor/collector.py index 3ee0e1aa..c2bf8179 100644 --- a/stem/descriptor/collector.py +++ b/stem/descriptor/collector.py @@ -1,4 +1,4 @@ -# Copyright 2019, Damian Johnson and The Tor Project +# Copyright 2019-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/descriptor/export.py b/stem/descriptor/export.py index e7b465bf..48699ca4 100644 --- a/stem/descriptor/export.py +++ b/stem/descriptor/export.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/descriptor/extrainfo_descriptor.py b/stem/descriptor/extrainfo_descriptor.py index d55b8eef..17082f88 100644 --- a/stem/descriptor/extrainfo_descriptor.py +++ b/stem/descriptor/extrainfo_descriptor.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/descriptor/hidden_service.py b/stem/descriptor/hidden_service.py index 01f8b96f..e5f82861 100644 --- a/stem/descriptor/hidden_service.py +++ b/stem/descriptor/hidden_service.py @@ -1,4 +1,4 @@ -# Copyright 2015-2019, Damian Johnson and The Tor Project +# Copyright 2015-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/descriptor/microdescriptor.py b/stem/descriptor/microdescriptor.py index de125f65..81bcb43c 100644 --- a/stem/descriptor/microdescriptor.py +++ b/stem/descriptor/microdescriptor.py @@ -1,4 +1,4 @@ -# Copyright 2013-2019, Damian Johnson and The Tor Project +# Copyright 2013-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/descriptor/networkstatus.py b/stem/descriptor/networkstatus.py index cd65da9e..1cab602c 100644 --- a/stem/descriptor/networkstatus.py +++ b/stem/descriptor/networkstatus.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/descriptor/reader.py b/stem/descriptor/reader.py index 32ec39fa..b4cc4279 100644 --- a/stem/descriptor/reader.py +++ b/stem/descriptor/reader.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/descriptor/remote.py b/stem/descriptor/remote.py index 82634513..c88b338e 100644 --- a/stem/descriptor/remote.py +++ b/stem/descriptor/remote.py @@ -1,4 +1,4 @@ -# Copyright 2013-2019, Damian Johnson and The Tor Project +# Copyright 2013-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/descriptor/router_status_entry.py b/stem/descriptor/router_status_entry.py index 91f2c146..cf1c52f5 100644 --- a/stem/descriptor/router_status_entry.py +++ b/stem/descriptor/router_status_entry.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/descriptor/server_descriptor.py b/stem/descriptor/server_descriptor.py index 9c29164b..1d9adf32 100644 --- a/stem/descriptor/server_descriptor.py +++ b/stem/descriptor/server_descriptor.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/descriptor/tordnsel.py b/stem/descriptor/tordnsel.py index 8a651864..d0f57b93 100644 --- a/stem/descriptor/tordnsel.py +++ b/stem/descriptor/tordnsel.py @@ -1,4 +1,4 @@ -# Copyright 2013-2019, Damian Johnson and The Tor Project +# Copyright 2013-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/directory.py b/stem/directory.py index 8139a935..b93b49a2 100644 --- a/stem/directory.py +++ b/stem/directory.py @@ -1,4 +1,4 @@ -# Copyright 2018-2019, Damian Johnson and The Tor Project +# Copyright 2018-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/exit_policy.py b/stem/exit_policy.py index 76d75e55..ddaf719c 100644 --- a/stem/exit_policy.py +++ b/stem/exit_policy.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/interpreter/__init__.py b/stem/interpreter/__init__.py index a4911a65..bd623120 100644 --- a/stem/interpreter/__init__.py +++ b/stem/interpreter/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2015-2019, Damian Johnson and The Tor Project +# Copyright 2015-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/interpreter/arguments.py b/stem/interpreter/arguments.py index 99c38795..00c8891d 100644 --- a/stem/interpreter/arguments.py +++ b/stem/interpreter/arguments.py @@ -1,4 +1,4 @@ -# Copyright 2015-2019, Damian Johnson and The Tor Project +# Copyright 2015-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/interpreter/autocomplete.py b/stem/interpreter/autocomplete.py index a08a34fb..b6c5354c 100644 --- a/stem/interpreter/autocomplete.py +++ b/stem/interpreter/autocomplete.py @@ -1,4 +1,4 @@ -# Copyright 2014-2019, Damian Johnson and The Tor Project +# Copyright 2014-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/interpreter/commands.py b/stem/interpreter/commands.py index fe0e1341..0f8f333c 100644 --- a/stem/interpreter/commands.py +++ b/stem/interpreter/commands.py @@ -1,4 +1,4 @@ -# Copyright 2014-2019, Damian Johnson and The Tor Project +# Copyright 2014-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/interpreter/help.py b/stem/interpreter/help.py index 8b3b9964..d2e08d5c 100644 --- a/stem/interpreter/help.py +++ b/stem/interpreter/help.py @@ -1,4 +1,4 @@ -# Copyright 2014-2019, Damian Johnson and The Tor Project +# Copyright 2014-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/manual.py b/stem/manual.py index 5b502a4d..25d435d4 100644 --- a/stem/manual.py +++ b/stem/manual.py @@ -1,4 +1,4 @@ -# Copyright 2015-2019, Damian Johnson and The Tor Project +# Copyright 2015-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/prereq.py b/stem/prereq.py index 4af6c093..5e8e89dc 100644 --- a/stem/prereq.py +++ b/stem/prereq.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/process.py b/stem/process.py index 80824bdc..4ed10dfb 100644 --- a/stem/process.py +++ b/stem/process.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/response/__init__.py b/stem/response/__init__.py index d90061b8..1a5b2b45 100644 --- a/stem/response/__init__.py +++ b/stem/response/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/response/add_onion.py b/stem/response/add_onion.py index d60e0d24..64d58282 100644 --- a/stem/response/add_onion.py +++ b/stem/response/add_onion.py @@ -1,4 +1,4 @@ -# Copyright 2015-2019, Damian Johnson and The Tor Project +# Copyright 2015-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information import stem.response diff --git a/stem/response/authchallenge.py b/stem/response/authchallenge.py index 6dd07b52..d9cc5491 100644 --- a/stem/response/authchallenge.py +++ b/stem/response/authchallenge.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information import binascii diff --git a/stem/response/events.py b/stem/response/events.py index 8b819315..e634a5d6 100644 --- a/stem/response/events.py +++ b/stem/response/events.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information import io diff --git a/stem/response/getconf.py b/stem/response/getconf.py index 35501767..6de49b1f 100644 --- a/stem/response/getconf.py +++ b/stem/response/getconf.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information import stem.response diff --git a/stem/response/getinfo.py b/stem/response/getinfo.py index c7379a9b..0b9766ba 100644 --- a/stem/response/getinfo.py +++ b/stem/response/getinfo.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information import stem.response diff --git a/stem/response/mapaddress.py b/stem/response/mapaddress.py index 47647d35..73ed84f1 100644 --- a/stem/response/mapaddress.py +++ b/stem/response/mapaddress.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information import stem.response diff --git a/stem/response/protocolinfo.py b/stem/response/protocolinfo.py index 7cb216ce..1763e59f 100644 --- a/stem/response/protocolinfo.py +++ b/stem/response/protocolinfo.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information import sys diff --git a/stem/socket.py b/stem/socket.py index 8303fd06..26e8f22e 100644 --- a/stem/socket.py +++ b/stem/socket.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/util/__init__.py b/stem/util/__init__.py index eb4e0618..5be29777 100644 --- a/stem/util/__init__.py +++ b/stem/util/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/util/conf.py b/stem/util/conf.py index 80399810..b4580ed9 100644 --- a/stem/util/conf.py +++ b/stem/util/conf.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/util/connection.py b/stem/util/connection.py index 5bfb1024..bd1fb5a2 100644 --- a/stem/util/connection.py +++ b/stem/util/connection.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/util/enum.py b/stem/util/enum.py index 9e9d2228..76a52a55 100644 --- a/stem/util/enum.py +++ b/stem/util/enum.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/util/log.py b/stem/util/log.py index 92e76258..e8d61c1d 100644 --- a/stem/util/log.py +++ b/stem/util/log.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/util/proc.py b/stem/util/proc.py index de357eff..f0e0104f 100644 --- a/stem/util/proc.py +++ b/stem/util/proc.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/util/str_tools.py b/stem/util/str_tools.py index 869f46b6..58effbee 100644 --- a/stem/util/str_tools.py +++ b/stem/util/str_tools.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/util/system.py b/stem/util/system.py index c04eb673..0d2262f5 100644 --- a/stem/util/system.py +++ b/stem/util/system.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/util/term.py b/stem/util/term.py index 48ab1e23..5554bf6c 100644 --- a/stem/util/term.py +++ b/stem/util/term.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/util/test_tools.py b/stem/util/test_tools.py index 36c88f6a..c7dce7ce 100644 --- a/stem/util/test_tools.py +++ b/stem/util/test_tools.py @@ -1,4 +1,4 @@ -# Copyright 2015-2019, Damian Johnson and The Tor Project +# Copyright 2015-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/util/tor_tools.py b/stem/util/tor_tools.py index b703fa50..8987635e 100644 --- a/stem/util/tor_tools.py +++ b/stem/util/tor_tools.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/stem/version.py b/stem/version.py index c13db22c..6bf0befe 100644 --- a/stem/version.py +++ b/stem/version.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/test/__init__.py b/test/__init__.py index fa9678af..3e84a0cc 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/test/arguments.py b/test/arguments.py index a871b4e5..65434b8b 100644 --- a/test/arguments.py +++ b/test/arguments.py @@ -1,4 +1,4 @@ -# Copyright 2015-2019, Damian Johnson and The Tor Project +# Copyright 2015-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/test/network.py b/test/network.py index f1b33676..5072c5b6 100644 --- a/test/network.py +++ b/test/network.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/test/output.py b/test/output.py index 92a47ac3..efd27b56 100644 --- a/test/output.py +++ b/test/output.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/test/require.py b/test/require.py index ca5fe3ea..8bdea06b 100644 --- a/test/require.py +++ b/test/require.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/test/runner.py b/test/runner.py index d8adb585..d6a0d561 100644 --- a/test/runner.py +++ b/test/runner.py @@ -1,4 +1,4 @@ -# Copyright 2011-2019, Damian Johnson and The Tor Project +# Copyright 2011-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """ diff --git a/test/task.py b/test/task.py index 272c4ddf..1fbcf9a4 100644 --- a/test/task.py +++ b/test/task.py @@ -1,4 +1,4 @@ -# Copyright 2012-2019, Damian Johnson and The Tor Project +# Copyright 2012-2020, Damian Johnson and The Tor Project # See LICENSE for licensing information """
participants (1)
-
atagar@torproject.org