Merge pull request #112 from roberthdevries/remove-unicode-prefix

Remove unicode prefix.
pull/121/head
David Garske 2026-05-17 22:32:20 -07:00 committed by GitHub
commit aa34a9c67d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 7 deletions

View File

@ -51,9 +51,9 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'wolfcrypt Python'
copyright = u'2022, wolfSSL Inc. All rights reserved'
author = u'wolfSSL'
project = 'wolfcrypt Python'
copyright = '2022, wolfSSL Inc. All rights reserved'
author = 'wolfSSL'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@ -227,8 +227,8 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'wolfcrypt.tex', u'wolfcrypt Python Documentation',
u'wolfSSL', 'manual'),
(master_doc, 'wolfcrypt.tex', 'wolfcrypt Python Documentation',
'wolfSSL', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -257,7 +257,7 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'wolfcrypt', u'wolfcrypt Python Documentation',
(master_doc, 'wolfcrypt', 'wolfcrypt Python Documentation',
[author], 1)
]
@ -271,7 +271,7 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'wolfcrypt', u'wolfcrypt Python Documentation',
(master_doc, 'wolfcrypt', 'wolfcrypt Python Documentation',
author, 'wolfcrypt', 'One line description of project.',
'Miscellaneous'),
]