summaryrefslogtreecommitdiff
path: root/doc/conf.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2020-09-08 20:20:19 +0200
committerGitHub <noreply@github.com>2020-09-08 20:20:19 +0200
commit9f5672672bd61f7149d2a165b49f0617a1a9fe8e (patch)
treead3d62c5c167c6a75edf67a88c20341c77566c7e /doc/conf.py
parentd9a9e9ee40eb9815ecc3d9ec9d6f5e57499009d2 (diff)
downloadpygments-git-9f5672672bd61f7149d2a165b49f0617a1a9fe8e.tar.gz
all: remove "u" string prefix (#1536)
* all: remove "u" string prefix * util: remove unirange Since Python 3.3, all builds are wide unicode compatible. * unistring: remove support for narrow-unicode builds which stopped being relevant with Python 3.3
Diffstat (limited to 'doc/conf.py')
-rw-r--r--doc/conf.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 9e896890..1a08e0d6 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -34,8 +34,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'Pygments'
-copyright = u'2006-2020, Georg Brandl and Pygments contributors'
+project = 'Pygments'
+copyright = '2006-2020, Georg Brandl and Pygments contributors'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -180,8 +180,8 @@ latex_elements = {
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
- ('docs/index', 'Pygments.tex', u'Pygments Documentation',
- u'Pygments authors', 'manual'),
+ ('docs/index', 'Pygments.tex', 'Pygments Documentation',
+ 'Pygments authors', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -210,8 +210,8 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
- ('docs/index', 'pygments', u'Pygments Documentation',
- [u'Pygments authors'], 1)
+ ('docs/index', 'pygments', 'Pygments Documentation',
+ ['Pygments authors'], 1)
]
# If true, show URL addresses after external links.