summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Falcão <gabriel@nacaolivre.org>2021-05-14 03:02:19 +0200
committerGabriel Falcão <gabriel@nacaolivre.org>2021-05-14 03:02:19 +0200
commit3a0164423f7d2d0141c6fd17e97fbd4eaec54b34 (patch)
tree78fbd0293f65e95fca64806ececf27989ac24758
parent02de9fbea58e903800d0100a06e017c6ae0359fa (diff)
downloadhttpretty-3a0164423f7d2d0141c6fd17e97fbd4eaec54b34.tar.gz
update license headers
-rw-r--r--COPYING2
-rw-r--r--docs/source/contributing.rst2
-rw-r--r--httpretty/__init__.py2
-rw-r--r--httpretty/compat.py2
-rw-r--r--httpretty/core.py2
-rw-r--r--httpretty/errors.py2
-rw-r--r--httpretty/http.py2
-rw-r--r--httpretty/utils.py2
-rw-r--r--setup.py2
-rw-r--r--tests/functional/__init__.py2
-rw-r--r--tests/functional/base.py2
-rw-r--r--tests/functional/test_bypass.py2
-rw-r--r--tests/functional/test_debug.py2
-rw-r--r--tests/functional/test_fakesocket.py2
-rw-r--r--tests/functional/test_httplib2.py2
-rw-r--r--tests/functional/test_passthrough.py2
-rw-r--r--tests/functional/test_requests.py2
-rw-r--r--tests/functional/test_urllib2.py2
-rw-r--r--tests/functional/testserver.py2
-rw-r--r--tests/pyopenssl/__init__.py2
-rw-r--r--tests/pyopenssl/test_mock.py2
-rw-r--r--tests/unit/__init__.py2
-rw-r--r--tests/unit/test_httpretty.py2
23 files changed, 23 insertions, 23 deletions
diff --git a/COPYING b/COPYING
index 8a04d77..16ca34c 100644
--- a/COPYING
+++ b/COPYING
@@ -1,4 +1,4 @@
-Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
diff --git a/docs/source/contributing.rst b/docs/source/contributing.rst
index 2c34c9a..99d390b 100644
--- a/docs/source/contributing.rst
+++ b/docs/source/contributing.rst
@@ -35,7 +35,7 @@ License
::
<HTTPretty - HTTP client mock for Python>
- Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+ Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
diff --git a/httpretty/__init__.py b/httpretty/__init__.py
index 9051af3..50971b0 100644
--- a/httpretty/__init__.py
+++ b/httpretty/__init__.py
@@ -1,7 +1,7 @@
# #!/usr/bin/env python
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/httpretty/compat.py b/httpretty/compat.py
index bf4d135..a8f551c 100644
--- a/httpretty/compat.py
+++ b/httpretty/compat.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
#
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/httpretty/core.py b/httpretty/core.py
index 28c001c..20dd281 100644
--- a/httpretty/core.py
+++ b/httpretty/core.py
@@ -1,5 +1,5 @@
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/httpretty/errors.py b/httpretty/errors.py
index 10faca3..149c6c6 100644
--- a/httpretty/errors.py
+++ b/httpretty/errors.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
#
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/httpretty/http.py b/httpretty/http.py
index a7fc728..87ceca9 100644
--- a/httpretty/http.py
+++ b/httpretty/http.py
@@ -1,7 +1,7 @@
# #!/usr/bin/env python
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/httpretty/utils.py b/httpretty/utils.py
index c411ef6..5c6fe20 100644
--- a/httpretty/utils.py
+++ b/httpretty/utils.py
@@ -1,5 +1,5 @@
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/setup.py b/setup.py
index b0f5a56..703aae8 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/__init__.py b/tests/functional/__init__.py
index 52ce9ee..1b809ba 100644
--- a/tests/functional/__init__.py
+++ b/tests/functional/__init__.py
@@ -1,7 +1,7 @@
# #!/usr/bin/env python
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/base.py b/tests/functional/base.py
index 3fc4d83..7d2ecee 100644
--- a/tests/functional/base.py
+++ b/tests/functional/base.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/test_bypass.py b/tests/functional/test_bypass.py
index 904bc12..e85dfac 100644
--- a/tests/functional/test_bypass.py
+++ b/tests/functional/test_bypass.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# <httpretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/test_debug.py b/tests/functional/test_debug.py
index ff00840..86bf09e 100644
--- a/tests/functional/test_debug.py
+++ b/tests/functional/test_debug.py
@@ -1,5 +1,5 @@
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/test_fakesocket.py b/tests/functional/test_fakesocket.py
index 9cd790a..39d914b 100644
--- a/tests/functional/test_fakesocket.py
+++ b/tests/functional/test_fakesocket.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/test_httplib2.py b/tests/functional/test_httplib2.py
index 9241f51..c913d8a 100644
--- a/tests/functional/test_httplib2.py
+++ b/tests/functional/test_httplib2.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/test_passthrough.py b/tests/functional/test_passthrough.py
index 7bd4ad9..47c9e79 100644
--- a/tests/functional/test_passthrough.py
+++ b/tests/functional/test_passthrough.py
@@ -1,5 +1,5 @@
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/test_requests.py b/tests/functional/test_requests.py
index cd77255..752428b 100644
--- a/tests/functional/test_requests.py
+++ b/tests/functional/test_requests.py
@@ -1,5 +1,5 @@
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/test_urllib2.py b/tests/functional/test_urllib2.py
index fb36eb5..9c8ff39 100644
--- a/tests/functional/test_urllib2.py
+++ b/tests/functional/test_urllib2.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/testserver.py b/tests/functional/testserver.py
index d18df0a..623dd88 100644
--- a/tests/functional/testserver.py
+++ b/tests/functional/testserver.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
#
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/pyopenssl/__init__.py b/tests/pyopenssl/__init__.py
index 52ce9ee..1b809ba 100644
--- a/tests/pyopenssl/__init__.py
+++ b/tests/pyopenssl/__init__.py
@@ -1,7 +1,7 @@
# #!/usr/bin/env python
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/pyopenssl/test_mock.py b/tests/pyopenssl/test_mock.py
index 12d6b7b..f98b102 100644
--- a/tests/pyopenssl/test_mock.py
+++ b/tests/pyopenssl/test_mock.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py
index f9813b0..a9eab2a 100644
--- a/tests/unit/__init__.py
+++ b/tests/unit/__init__.py
@@ -1,7 +1,7 @@
# #!/usr/bin/env python
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/unit/test_httpretty.py b/tests/unit/test_httpretty.py
index 6c3d707..017b290 100644
--- a/tests/unit/test_httpretty.py
+++ b/tests/unit/test_httpretty.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2020> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2021> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation