summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2019-02-23 14:20:43 -0800
committerDavid Lord <davidism@gmail.com>2019-02-23 14:20:43 -0800
commit79ee6ce0ed93c6da73512f069d7db866d955df04 (patch)
treedd71d1cf1af60fece9884e8044eaa7bca5713f53 /src
parent12fa6db477f85db97d42f334acf20f7b63d1219d (diff)
downloadmarkupsafe-79ee6ce0ed93c6da73512f069d7db866d955df04.tar.gz
update license data
Diffstat (limited to 'src')
-rw-r--r--src/markupsafe/__init__.py4
-rw-r--r--src/markupsafe/_compat.py4
-rw-r--r--src/markupsafe/_constants.py4
-rw-r--r--src/markupsafe/_native.py4
-rw-r--r--src/markupsafe/_speedups.c4
5 files changed, 10 insertions, 10 deletions
diff --git a/src/markupsafe/__init__.py b/src/markupsafe/__init__.py
index 5e09525..f9eeeb7 100644
--- a/src/markupsafe/__init__.py
+++ b/src/markupsafe/__init__.py
@@ -6,8 +6,8 @@ markupsafe
Implements an escape function and a Markup string to replace HTML
special characters with safe representations.
-:copyright: © 2010 by the Pallets team.
-:license: BSD, see LICENSE for more details.
+:copyright: 2010 Pallets
+:license: BSD-3-Clause
"""
import re
import string
diff --git a/src/markupsafe/_compat.py b/src/markupsafe/_compat.py
index e51d57d..bc05090 100644
--- a/src/markupsafe/_compat.py
+++ b/src/markupsafe/_compat.py
@@ -3,8 +3,8 @@
markupsafe._compat
~~~~~~~~~~~~~~~~~~
-:copyright: © 2010 by the Pallets team.
-:license: BSD, see LICENSE for more details.
+:copyright: 2010 Pallets
+:license: BSD-3-Clause
"""
import sys
diff --git a/src/markupsafe/_constants.py b/src/markupsafe/_constants.py
index 83670cb..7c57c2d 100644
--- a/src/markupsafe/_constants.py
+++ b/src/markupsafe/_constants.py
@@ -3,8 +3,8 @@
markupsafe._constants
~~~~~~~~~~~~~~~~~~~~~
-:copyright: © 2010 by the Pallets team.
-:license: BSD, see LICENSE for more details.
+:copyright: 2010 Pallets
+:license: BSD-3-Clause
"""
HTML_ENTITIES = {
diff --git a/src/markupsafe/_native.py b/src/markupsafe/_native.py
index 245f03a..cd08752 100644
--- a/src/markupsafe/_native.py
+++ b/src/markupsafe/_native.py
@@ -5,8 +5,8 @@ markupsafe._native
Native Python implementation used when the C module is not compiled.
-:copyright: © 2010 by the Pallets team.
-:license: BSD, see LICENSE for more details.
+:copyright: 2010 Pallets
+:license: BSD-3-Clause
"""
from . import Markup
from ._compat import text_type
diff --git a/src/markupsafe/_speedups.c b/src/markupsafe/_speedups.c
index b27435e..12d2c4a 100644
--- a/src/markupsafe/_speedups.c
+++ b/src/markupsafe/_speedups.c
@@ -5,8 +5,8 @@
* C implementation of escaping for better performance. Used instead of
* the native Python implementation when compiled.
*
- * :copyright: © 2010 by the Pallets team.
- * :license: BSD, see LICENSE for more details.
+ * :copyright: 2010 Pallets
+ * :license: BSD-3-Clause
*/
#include <Python.h>