remove unicode from code

Change-Id: Ic7dba15d4ec03b92d96e85bc6fa2f3a2c87a7ac7
This commit is contained in:
wangjiaqi07 2022-08-25 10:56:14 +08:00
parent ce4c9f6b82
commit 4ce04d1d5c
1 changed files with 8 additions and 8 deletions

View File

@ -40,8 +40,8 @@ source_suffix = '.rst'
master_doc = 'index' master_doc = 'index'
# General information about the project. # General information about the project.
project = u'PyECLib' project = 'PyECLib'
copyright = u'2019, Kevin Greenan, Tushar Gohad, Kota Tsuyuzaki' copyright = '2019, Kevin Greenan, Tushar Gohad, Kota Tsuyuzaki'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
@ -183,8 +183,8 @@ latex_elements = {
# Grouping the document tree into LaTeX files. List of tuples # Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]). # (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [ latex_documents = [
('index', 'PyECLib.tex', u'PyECLib Documentation', ('index', 'PyECLib.tex', 'PyECLib Documentation',
u'Kevin Greenan, Tushar Gohad, Kota Tsuyuzaki', 'manual'), 'Kevin Greenan, Tushar Gohad, Kota Tsuyuzaki', 'manual'),
] ]
# The name of an image file (relative to this directory) to place at the top of # The name of an image file (relative to this directory) to place at the top of
@ -213,8 +213,8 @@ latex_documents = [
# One entry per manual page. List of tuples # One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section). # (source start file, name, description, authors, manual section).
man_pages = [ man_pages = [
('index', 'pyeclib', u'PyECLib Documentation', ('index', 'pyeclib', 'PyECLib Documentation',
[u'Kevin Greenan, Tushar Gohad, Kota Tsuyuzaki'], 1) ['Kevin Greenan, Tushar Gohad, Kota Tsuyuzaki'], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -227,8 +227,8 @@ man_pages = [
# (source start file, target name, title, author, # (source start file, target name, title, author,
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'PyECLib', u'PyECLib Documentation', ('index', 'PyECLib', 'PyECLib Documentation',
u'Kevin Greenan, Tushar Gohad, Kota Tsuyuzaki', 'PyECLib', 'One line description of project.', 'Kevin Greenan, Tushar Gohad, Kota Tsuyuzaki', 'PyECLib', 'One line description of project.',
'Miscellaneous'), 'Miscellaneous'),
] ]