commit cccfc980bf5c3b1213f086d68d2fdcd07c5ace20 Author: Isis Lovecruft isis@torproject.org Date: Fri Jul 7 02:14:11 2017 +0000
Update copyright years to 2017. --- bridgedb.conf | 4 ++-- bridgedb/Bridges.py | 2 +- bridgedb/Main.py | 8 ++++---- bridgedb/Stability.py | 10 +++++----- bridgedb/bridgerequest.py | 4 ++-- bridgedb/bridges.py | 4 ++-- bridgedb/captcha.py | 6 +++--- bridgedb/crypto.py | 6 +++--- bridgedb/distribute.py | 4 ++-- bridgedb/email/autoresponder.py | 4 ++-- bridgedb/email/distributor.py | 6 +++--- bridgedb/email/dkim.py | 4 ++-- bridgedb/email/request.py | 4 ++-- bridgedb/email/server.py | 4 ++-- bridgedb/email/templates.py | 4 ++-- bridgedb/filters.py | 4 ++-- bridgedb/geo.py | 2 +- bridgedb/https/distributor.py | 6 +++--- bridgedb/https/request.py | 4 ++-- bridgedb/https/server.py | 4 ++-- bridgedb/interfaces.py | 4 ++-- bridgedb/parse/descriptors.py | 4 ++-- bridgedb/parse/fingerprint.py | 4 ++-- bridgedb/parse/nickname.py | 6 +++--- bridgedb/parse/versions.py | 6 +++--- bridgedb/persistent.py | 6 +++--- bridgedb/proxy.py | 6 +++--- bridgedb/qrcodes.py | 4 ++-- bridgedb/runner.py | 6 +++--- bridgedb/safelog.py | 4 ++-- bridgedb/schedule.py | 4 ++-- bridgedb/strings.py | 6 +++--- bridgedb/translations.py | 4 ++-- bridgedb/txrecaptcha.py | 4 ++-- bridgedb/util.py | 6 +++--- test/deprecated.py | 6 +++--- test/email_helpers.py | 4 ++-- test/https_helpers.py | 4 ++-- test/test_Bucket.py | 4 ++-- test/test_Main.py | 6 +++--- test/test_Tests.py | 6 +++--- test/test_bridgerequest.py | 4 ++-- test/test_bridges.py | 4 ++-- test/test_captcha.py | 4 ++-- test/test_configure.py | 4 ++-- test/test_crypto.py | 6 +++--- test/test_distribute.py | 4 ++-- test/test_email_distributor.py | 4 ++-- test/test_filters.py | 4 ++-- test/test_geo.py | 4 ++-- test/test_https.py | 4 ++-- test/test_https_distributor.py | 6 +++--- test/test_https_request.py | 4 ++-- test/test_https_server.py | 4 ++-- test/test_interfaces.py | 4 ++-- test/test_parse_descriptors.py | 4 ++-- test/test_parse_headers.py | 6 +++--- test/test_parse_nickname.py | 6 +++--- test/test_parse_options.py | 4 ++-- test/test_parse_versions.py | 4 ++-- test/test_proxy.py | 6 +++--- test/test_qrcodes.py | 4 ++-- test/test_schedule.py | 4 ++-- test/test_translations.py | 4 ++-- test/test_txrecaptcha.py | 4 ++-- test/test_util.py | 6 +++--- test/util.py | 6 +++--- 67 files changed, 158 insertions(+), 158 deletions(-)
diff --git a/bridgedb.conf b/bridgedb.conf index 4c547f5..25a9cbf 100644 --- a/bridgedb.conf +++ b/bridgedb.conf @@ -13,8 +13,8 @@ # :authors: The Tor Project, Inc. # :license: This file is freely distributed as part of BridgeDB, see LICENSE # for details. -# :copyright: (c) 2007-2015 The Tor Project, Inc. -# (c) 2007-2015, all sentient entities within the AUTHORS file +# :copyright: (c) 2007-2017 The Tor Project, Inc. +# (c) 2007-2017, all sentient entities within the AUTHORS file # :version: 0.3.3 #=============================================================================== # diff --git a/bridgedb/Bridges.py b/bridgedb/Bridges.py index 7a237fe..ddfb447 100644 --- a/bridgedb/Bridges.py +++ b/bridgedb/Bridges.py @@ -3,7 +3,7 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2007-2017, The Tor Project, Inc. # :license: 3-Clause BSD, see LICENSE for licensing information
"""This module has low-level functionality for parsing bridges and arranging diff --git a/bridgedb/Main.py b/bridgedb/Main.py index 4990904..4273653 100644 --- a/bridgedb/Main.py +++ b/bridgedb/Main.py @@ -3,10 +3,10 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: please see the AUTHORS file for attributions -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2013-2015, Matthew Finkel -# (c) 2007-2015, Nick Mathewson -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2013-2017, Matthew Finkel +# (c) 2007-2017, Nick Mathewson +# (c) 2007-2017, The Tor Project, Inc. # :license: see LICENSE for licensing information
"""This module sets up BridgeDB and starts the servers running.""" diff --git a/bridgedb/Stability.py b/bridgedb/Stability.py index fbc8e88..f2f99ce 100644 --- a/bridgedb/Stability.py +++ b/bridgedb/Stability.py @@ -3,11 +3,11 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: please see the AUTHORS file for attributions -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2013-2015, Matthew Finkel -# (c) 2012-2015, Aaron Gibson -# (c) 2007-2015, Nick Mathewson -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2013-2017, Matthew Finkel +# (c) 2012-2017, Aaron Gibson +# (c) 2007-2017, Nick Mathewson +# (c) 2007-2017, The Tor Project, Inc. # :license: see LICENSE for licensing information
"""This module provides functionality for tracking bridge stability metrics. diff --git a/bridgedb/bridgerequest.py b/bridgedb/bridgerequest.py index d24948c..560b704 100644 --- a/bridgedb/bridgerequest.py +++ b/bridgedb/bridgerequest.py @@ -5,8 +5,8 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2014-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2014-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/bridgedb/bridges.py b/bridgedb/bridges.py index 56e55cc..4386d4e 100644 --- a/bridgedb/bridges.py +++ b/bridgedb/bridges.py @@ -3,8 +3,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: please see the AUTHORS file for attributions -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: see LICENSE for licensing information
"""Classes for manipulating and storing Bridges and their attributes. diff --git a/bridgedb/captcha.py b/bridgedb/captcha.py index bdcd90c..ad89aea 100644 --- a/bridgedb/captcha.py +++ b/bridgedb/captcha.py @@ -7,9 +7,9 @@ # Aaron Gibson 0x2C4B239DD876C9F6 aagbsn@torproject.org # Nick Mathewson 0x21194EBB165733EA nickm@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file -# (c) 2014-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file +# (c) 2014-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/bridgedb/crypto.py b/bridgedb/crypto.py index 3854602..13af305 100644 --- a/bridgedb/crypto.py +++ b/bridgedb/crypto.py @@ -3,9 +3,9 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, all entities within the AUTHORS file # :license: 3-clause BSD, see included LICENSE for information
"""This module contains general utilities for working with external diff --git a/bridgedb/distribute.py b/bridgedb/distribute.py index ac8df5f..ec8fb26 100644 --- a/bridgedb/distribute.py +++ b/bridgedb/distribute.py @@ -5,8 +5,8 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/bridgedb/email/autoresponder.py b/bridgedb/email/autoresponder.py index f4a93e3..430a50c 100644 --- a/bridgedb/email/autoresponder.py +++ b/bridgedb/email/autoresponder.py @@ -7,8 +7,8 @@ # Isis Lovecruft isis@torproject.org 0xA3ADB67A2CDB8B35 # Matthew Finkel sysrqb@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2013-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2013-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/bridgedb/email/distributor.py b/bridgedb/email/distributor.py index 8f60b0f..c6e45d5 100644 --- a/bridgedb/email/distributor.py +++ b/bridgedb/email/distributor.py @@ -5,9 +5,9 @@ # :authors: Nick Mathewson # Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # Matthew Finkel 0x017DD169EA793BE2 sysrqb@torproject.org -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2013-2015, Matthew Finkel -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2013-2017, Matthew Finkel +# (c) 2007-2017, The Tor Project, Inc. # :license: see LICENSE for licensing information
""" diff --git a/bridgedb/email/dkim.py b/bridgedb/email/dkim.py index 7b6adfa..c851c5c 100644 --- a/bridgedb/email/dkim.py +++ b/bridgedb/email/dkim.py @@ -7,8 +7,8 @@ # Isis Lovecruft isis@torproject.org 0xA3ADB67A2CDB8B35 # Matthew Finkel sysrqb@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2013-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2013-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/bridgedb/email/request.py b/bridgedb/email/request.py index 5721fa3..71167c7 100644 --- a/bridgedb/email/request.py +++ b/bridgedb/email/request.py @@ -7,8 +7,8 @@ # Isis Lovecruft isis@torproject.org 0xA3ADB67A2CDB8B35 # Matthew Finkel sysrqb@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2013-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2013-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/bridgedb/email/server.py b/bridgedb/email/server.py index 010648f..41862e7 100644 --- a/bridgedb/email/server.py +++ b/bridgedb/email/server.py @@ -7,8 +7,8 @@ # Isis Lovecruft isis@torproject.org 0xA3ADB67A2CDB8B35 # Matthew Finkel sysrqb@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2013-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2013-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/bridgedb/email/templates.py b/bridgedb/email/templates.py index 6998716..014881e 100644 --- a/bridgedb/email/templates.py +++ b/bridgedb/email/templates.py @@ -5,8 +5,8 @@ # # :authors: Isis Lovecruft isis@torproject.org 0xA3ADB67A2CDB8B35 # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2013-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2013-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/bridgedb/filters.py b/bridgedb/filters.py index c11c7ce..cac587b 100644 --- a/bridgedb/filters.py +++ b/bridgedb/filters.py @@ -6,8 +6,8 @@ # :authors: Nick Mathewson nickm@torproject.org # Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2013-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2013-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/bridgedb/geo.py b/bridgedb/geo.py index c986fa1..b42ef4f 100644 --- a/bridgedb/geo.py +++ b/bridgedb/geo.py @@ -3,7 +3,7 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2007-2017, The Tor Project, Inc. # :license: 3-Clause BSD, see LICENSE for licensing information
""" diff --git a/bridgedb/https/distributor.py b/bridgedb/https/distributor.py index 7d9a293..4e980b7 100644 --- a/bridgedb/https/distributor.py +++ b/bridgedb/https/distributor.py @@ -5,9 +5,9 @@ # :authors: Nick Mathewson # Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # Matthew Finkel 0x017DD169EA793BE2 sysrqb@torproject.org -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2013-2015, Matthew Finkel -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2013-2017, Matthew Finkel +# (c) 2007-2017, The Tor Project, Inc. # :license: see LICENSE for licensing information
""" diff --git a/bridgedb/https/request.py b/bridgedb/https/request.py index e438044..fd80809 100644 --- a/bridgedb/https/request.py +++ b/bridgedb/https/request.py @@ -4,8 +4,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft isis@torproject.org 0xA3ADB67A2CDB8B35 -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2013-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2013-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/bridgedb/https/server.py b/bridgedb/https/server.py index 346d81f..c785450 100644 --- a/bridgedb/https/server.py +++ b/bridgedb/https/server.py @@ -3,8 +3,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: please see included AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2013-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2013-2017, Isis Lovecruft # :license: see LICENSE for licensing information
""" diff --git a/bridgedb/interfaces.py b/bridgedb/interfaces.py index 3ec01b6..d619a68 100644 --- a/bridgedb/interfaces.py +++ b/bridgedb/interfaces.py @@ -5,8 +5,8 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2014-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2014-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/bridgedb/parse/descriptors.py b/bridgedb/parse/descriptors.py index d1c4a6c..742f535 100644 --- a/bridgedb/parse/descriptors.py +++ b/bridgedb/parse/descriptors.py @@ -5,8 +5,8 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2014-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2014-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/bridgedb/parse/fingerprint.py b/bridgedb/parse/fingerprint.py index 4e3ff02..5d9e074 100644 --- a/bridgedb/parse/fingerprint.py +++ b/bridgedb/parse/fingerprint.py @@ -5,8 +5,8 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2014-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2014-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/bridgedb/parse/nickname.py b/bridgedb/parse/nickname.py index 35cf626..dcc328b 100644 --- a/bridgedb/parse/nickname.py +++ b/bridgedb/parse/nickname.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2013-2015 Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2013-2017 Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: 3-clause BSD, see included LICENSE for information
"""Parsers for bridge nicknames. diff --git a/bridgedb/parse/versions.py b/bridgedb/parse/versions.py index ee62792..335e04c 100644 --- a/bridgedb/parse/versions.py +++ b/bridgedb/parse/versions.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2014-2015 Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2014-2017 Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: see included LICENSE for information
"""Parsers for Tor version number strings. diff --git a/bridgedb/persistent.py b/bridgedb/persistent.py index 22673dd..4410b9b 100644 --- a/bridgedb/persistent.py +++ b/bridgedb/persistent.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2013-2015 Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2013-2017 Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: 3-clause BSD, see included LICENSE for information
"""Module for functionality to persistently store state.""" diff --git a/bridgedb/proxy.py b/bridgedb/proxy.py index 5b881fa..4611cf7 100644 --- a/bridgedb/proxy.py +++ b/bridgedb/proxy.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2013-2015 Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2013-2017 Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: 3-clause BSD, see included LICENSE for information
"""Classes for finding and managing lists of open proxies.""" diff --git a/bridgedb/qrcodes.py b/bridgedb/qrcodes.py index e09a705..b3c4546 100644 --- a/bridgedb/qrcodes.py +++ b/bridgedb/qrcodes.py @@ -5,8 +5,8 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2014-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2014-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/bridgedb/runner.py b/bridgedb/runner.py index 597b1b2..4591a3a 100644 --- a/bridgedb/runner.py +++ b/bridgedb/runner.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file -# (c) 2012-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file +# (c) 2012-2017, Isis Lovecruft # :license: 3-clause BSD, see included LICENSE for information
"""Classes for running components and servers, as well as daemonisation. diff --git a/bridgedb/safelog.py b/bridgedb/safelog.py index 24c9768..db8e296 100644 --- a/bridgedb/safelog.py +++ b/bridgedb/safelog.py @@ -3,8 +3,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: 3-Clause BSD, see LICENSE for licensing information
"""Filters for log sanitisation. diff --git a/bridgedb/schedule.py b/bridgedb/schedule.py index 6cad2dc..e962c39 100644 --- a/bridgedb/schedule.py +++ b/bridgedb/schedule.py @@ -4,8 +4,8 @@ # # :authors: Nick Mathewson # Isis Lovecruft isis@torproject.org 0xa3adb67a2cdb8b35 -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2014-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2014-2017, Isis Lovecruft # :license: see LICENSE for licensing information
"""This module implements functions for dividing time into chunks. diff --git a/bridgedb/strings.py b/bridgedb/strings.py index e108a88..7d4b99e 100644 --- a/bridgedb/strings.py +++ b/bridgedb/strings.py @@ -3,9 +3,9 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, all entities within the AUTHORS file # :license: 3-clause BSD, see included LICENSE for information
"""Commonly used string constants. diff --git a/bridgedb/translations.py b/bridgedb/translations.py index 2c9d56f..f3e6ed4 100644 --- a/bridgedb/translations.py +++ b/bridgedb/translations.py @@ -3,8 +3,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: 3-Clause BSD, see LICENSE for licensing information
import gettext diff --git a/bridgedb/txrecaptcha.py b/bridgedb/txrecaptcha.py index ed5891a..fc4ca2f 100644 --- a/bridgedb/txrecaptcha.py +++ b/bridgedb/txrecaptcha.py @@ -3,8 +3,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: 3-Clause BSD, see LICENSE for licensing information
"""Twisted-based reCAPTCHA client. diff --git a/bridgedb/util.py b/bridgedb/util.py index 42e4664..63f508e 100644 --- a/bridgedb/util.py +++ b/bridgedb/util.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # Matthew Finkel 0x017DD169EA793BE2 sysrqb@torproject.org -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2013-2015, Matthew Finkel -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2013-2017, Matthew Finkel +# (c) 2007-2017, The Tor Project, Inc. # :license: 3-Clause BSD, see LICENSE for licensing information
"""Common utilities for BridgeDB.""" diff --git a/test/deprecated.py b/test/deprecated.py index 39920a2..ab7c502 100644 --- a/test/deprecated.py +++ b/test/deprecated.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: 3-Clause BSD, see LICENSE for licensing information
"""deprecated ― functions and classes which have been removed from the diff --git a/test/email_helpers.py b/test/email_helpers.py index 8d7dd49..55b8033 100644 --- a/test/email_helpers.py +++ b/test/email_helpers.py @@ -3,8 +3,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: see LICENSE for licensing information
diff --git a/test/https_helpers.py b/test/https_helpers.py index 14755ec..5c1c838 100644 --- a/test/https_helpers.py +++ b/test/https_helpers.py @@ -3,8 +3,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: see LICENSE for licensing information
diff --git a/test/test_Bucket.py b/test/test_Bucket.py index a6e335f..01f3f26 100644 --- a/test/test_Bucket.py +++ b/test/test_Bucket.py @@ -2,8 +2,8 @@ # # This file is part of BridgeDB, a Tor bridge distribution system. # -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: 3-Clause BSD, see LICENSE for licensing information
"""Unittests for the :mod:`bridgedb.Bucket` module. diff --git a/test/test_Main.py b/test/test_Main.py index e53256f..b157fbf 100644 --- a/test/test_Main.py +++ b/test/test_Main.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2013-2015 Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2013-2017 Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: see included LICENSE for information
"""Tests for :mod:`bridgedb.Main`.""" diff --git a/test/test_Tests.py b/test/test_Tests.py index 9209245..79e0daa 100644 --- a/test/test_Tests.py +++ b/test/test_Tests.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: 3-Clause BSD, see LICENSE for licensing information
"""Class wrappers to adapt BridgeDB old unittests in ``bridgedb.Tests`` diff --git a/test/test_bridgerequest.py b/test/test_bridgerequest.py index ccbf406..681d54a 100644 --- a/test/test_bridgerequest.py +++ b/test/test_bridgerequest.py @@ -5,8 +5,8 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2014-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2014-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/test/test_bridges.py b/test/test_bridges.py index 3c5fe0d..709ae81 100644 --- a/test/test_bridges.py +++ b/test/test_bridges.py @@ -4,8 +4,8 @@ # # :authors: Isis Lovecruft isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: 3-Clause BSD, see LICENSE for licensing information
"""Unittests for the :mod:`bridgedb.bridges` module.""" diff --git a/test/test_captcha.py b/test/test_captcha.py index 1000477..328a03c 100644 --- a/test/test_captcha.py +++ b/test/test_captcha.py @@ -3,8 +3,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: 3-Clause BSD, see LICENSE for licensing information
"""Unittests for the :mod:`bridgedb.captcha` module.""" diff --git a/test/test_configure.py b/test/test_configure.py index ebac95a..aca7c8d 100644 --- a/test/test_configure.py +++ b/test/test_configure.py @@ -3,8 +3,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: please see the AUTHORS file for attributions -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: see LICENSE for licensing information
"""Tests for :mod:`bridgedb.configure`.""" diff --git a/test/test_crypto.py b/test/test_crypto.py index 5220a58..3010b5c 100644 --- a/test/test_crypto.py +++ b/test/test_crypto.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: 3-Clause BSD, see LICENSE for licensing information
"""Unittests for :mod:`bridgedb.crypto`.""" diff --git a/test/test_distribute.py b/test/test_distribute.py index 95fda31..9961a05 100644 --- a/test/test_distribute.py +++ b/test/test_distribute.py @@ -5,8 +5,8 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/test/test_email_distributor.py b/test/test_email_distributor.py index f204d57..dd9997e 100644 --- a/test/test_email_distributor.py +++ b/test/test_email_distributor.py @@ -3,8 +3,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org -# :copyright: (c) 2013-2015 Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017 Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: see included LICENSE for information
"""Tests for :mod:`bridgedb.email.distributor`.""" diff --git a/test/test_filters.py b/test/test_filters.py index 73e5685..3b9efcb 100644 --- a/test/test_filters.py +++ b/test/test_filters.py @@ -4,8 +4,8 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2013-2015 Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017 Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: see included LICENSE for information
"""Tests for :mod:`bridgedb.filters`.""" diff --git a/test/test_geo.py b/test/test_geo.py index 5e5547b..4ca6cbb 100644 --- a/test/test_geo.py +++ b/test/test_geo.py @@ -4,8 +4,8 @@ # # :authors: Isis Lovecruft isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, Isis Lovecruft # :license: see LICENSE for licensing information
"""Unittests for the :mod:`bridgedb.geo` module.""" diff --git a/test/test_https.py b/test/test_https.py index f47ff34..c29d6b0 100644 --- a/test/test_https.py +++ b/test/test_https.py @@ -5,8 +5,8 @@ # # :authors: trygve tor-dev@lists.torproject.org # :copyright: (c) 2014, trygve -# (c) 2014-2015, The Tor Project, Inc. -# (c) 2014-2015, Isis Lovecruft +# (c) 2014-2017, The Tor Project, Inc. +# (c) 2014-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/test/test_https_distributor.py b/test/test_https_distributor.py index 3c1416d..a287420 100644 --- a/test/test_https_distributor.py +++ b/test/test_https_distributor.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2013-2015 Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2013-2017 Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: 3-clause BSD, see included LICENSE for information
"""Tests for :mod:`bridgedb.https.distributor`.""" diff --git a/test/test_https_request.py b/test/test_https_request.py index c39662f..c262aef 100644 --- a/test/test_https_request.py +++ b/test/test_https_request.py @@ -5,8 +5,8 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2014-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2014-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/test/test_https_server.py b/test/test_https_server.py index 40855fa..1880c8b 100644 --- a/test/test_https_server.py +++ b/test/test_https_server.py @@ -4,8 +4,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org -# :copyright: (c) 2014-2015, Isis Lovecruft -# (c) 2014-2015, The Tor Project, Inc. +# :copyright: (c) 2014-2017, Isis Lovecruft +# (c) 2014-2017, The Tor Project, Inc. # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/test/test_interfaces.py b/test/test_interfaces.py index 8a78291..36f2daf 100644 --- a/test/test_interfaces.py +++ b/test/test_interfaces.py @@ -5,8 +5,8 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: see LICENSE for licensing information # ____________________________________________________________________________
diff --git a/test/test_parse_descriptors.py b/test/test_parse_descriptors.py index bd3c3d5..bc565e1 100644 --- a/test/test_parse_descriptors.py +++ b/test/test_parse_descriptors.py @@ -3,8 +3,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: 3-Clause BSD, see LICENSE for licensing information
"""Unittests for :class:`bridgedb.parse.descriptors` module.""" diff --git a/test/test_parse_headers.py b/test/test_parse_headers.py index 278e721..d0c038b 100644 --- a/test/test_parse_headers.py +++ b/test/test_parse_headers.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2014-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2014-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: see LICENSE for licensing information
"""Unittests for the :mod:`bridgedb.parse.headers` module.""" diff --git a/test/test_parse_nickname.py b/test/test_parse_nickname.py index fea000a..66c5fd5 100644 --- a/test/test_parse_nickname.py +++ b/test/test_parse_nickname.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file -# (c) 2013-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file +# (c) 2013-2017, Isis Lovecruft # :license: see LICENSE for licensing information
"""Unittests for the :mod:`bridgedb.parse.nickname` module.""" diff --git a/test/test_parse_options.py b/test/test_parse_options.py index c505c36..1071e90 100644 --- a/test/test_parse_options.py +++ b/test/test_parse_options.py @@ -5,8 +5,8 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2014-2015, The Tor Project, Inc. -# (c) 2014-2015, Isis Lovecruft +# :copyright: (c) 2014-2017, The Tor Project, Inc. +# (c) 2014-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/test/test_parse_versions.py b/test/test_parse_versions.py index becdd20..4374328 100644 --- a/test/test_parse_versions.py +++ b/test/test_parse_versions.py @@ -5,8 +5,8 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2014-2015, The Tor Project, Inc. -# (c) 2014-2015, Isis Lovecruft +# :copyright: (c) 2014-2017, The Tor Project, Inc. +# (c) 2014-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/test/test_proxy.py b/test/test_proxy.py index 909218d..0a69eb0 100644 --- a/test/test_proxy.py +++ b/test/test_proxy.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2013-2015 Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2013-2017 Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: 3-clause BSD, see included LICENSE for information
"""Tests for :mod:`bridgedb.proxy`.""" diff --git a/test/test_qrcodes.py b/test/test_qrcodes.py index 4abe8cc..8385fa0 100644 --- a/test/test_qrcodes.py +++ b/test/test_qrcodes.py @@ -5,8 +5,8 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2007-2015, The Tor Project, Inc. -# (c) 2014-2015, Isis Lovecruft +# :copyright: (c) 2007-2017, The Tor Project, Inc. +# (c) 2014-2017, Isis Lovecruft # :license: see LICENSE for licensing information #_____________________________________________________________________________
diff --git a/test/test_schedule.py b/test/test_schedule.py index 6a38871..1bcec07 100644 --- a/test/test_schedule.py +++ b/test/test_schedule.py @@ -3,8 +3,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org -# :copyright: (c) 2014-2015, Isis Lovecruft -# (c) 2014-2015, The Tor Project, Inc. +# :copyright: (c) 2014-2017, Isis Lovecruft +# (c) 2014-2017, The Tor Project, Inc. # :license: see LICENSE for licensing information
"""Unittests for the :mod:`bridgedb.schedule` module.""" diff --git a/test/test_translations.py b/test/test_translations.py index c1f0c8c..54c27a0 100644 --- a/test/test_translations.py +++ b/test/test_translations.py @@ -3,8 +3,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org -# :copyright: (c) 2014-2015, Isis Lovecruft -# (c) 2014-2015, The Tor Project, Inc. +# :copyright: (c) 2014-2017, Isis Lovecruft +# (c) 2014-2017, The Tor Project, Inc. # :license: 3-Clause BSD, see LICENSE for licensing information
diff --git a/test/test_txrecaptcha.py b/test/test_txrecaptcha.py index 9e4f5f6..2550c3d 100644 --- a/test/test_txrecaptcha.py +++ b/test/test_txrecaptcha.py @@ -3,8 +3,8 @@ # This file is part of BridgeDB, a Tor bridge distribution system. # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. # :license: 3-Clause BSD, see LICENSE for licensing information
"""Unittests for the bridgedb.txrecaptcha module.""" diff --git a/test/test_util.py b/test/test_util.py index ea5d9ee..e858861 100644 --- a/test/test_util.py +++ b/test/test_util.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2014-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2014-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: see LICENSE for licensing information
"""Unittests for the :mod:`bridgedb.util` module.""" diff --git a/test/util.py b/test/util.py index bd8227d..042c92d 100644 --- a/test/util.py +++ b/test/util.py @@ -4,9 +4,9 @@ # # :authors: Isis Lovecruft 0xA3ADB67A2CDB8B35 isis@torproject.org # please also see AUTHORS file -# :copyright: (c) 2013-2015, Isis Lovecruft -# (c) 2007-2015, The Tor Project, Inc. -# (c) 2007-2015, all entities within the AUTHORS file +# :copyright: (c) 2013-2017, Isis Lovecruft +# (c) 2007-2017, The Tor Project, Inc. +# (c) 2007-2017, all entities within the AUTHORS file # :license: 3-Clause BSD, see LICENSE for licensing information
"""Unittest utilities."""
tor-commits@lists.torproject.org