No need to use unicode strings with Python3

This commit is contained in:
Ülgen Sarıkavak 2020-03-15 07:01:55 +03:00
parent 549dde1db3
commit 14321dd5d9
2 changed files with 10 additions and 10 deletions

View File

@ -60,18 +60,18 @@ source_suffix = ".rst"
master_doc = "index" master_doc = "index"
# General information about the project. # General information about the project.
project = u"Graphene Django" project = "Graphene Django"
copyright = u"Graphene 2017" copyright = "Graphene 2017"
author = u"Syrus Akbary" author = "Syrus Akbary"
# 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
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = u"1.0" version = "1.0"
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = u"1.0.dev" release = "1.0.dev"
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
@ -276,7 +276,7 @@ latex_elements = {
# (source start file, target name, title, # (source start file, target name, title,
# author, documentclass [howto, manual, or own class]). # author, documentclass [howto, manual, or own class]).
latex_documents = [ latex_documents = [
(master_doc, "Graphene.tex", u"Graphene Documentation", u"Syrus Akbary", "manual") (master_doc, "Graphene.tex", "Graphene Documentation", "Syrus Akbary", "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
@ -317,7 +317,7 @@ 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 = [
(master_doc, "graphene_django", u"Graphene Django Documentation", [author], 1) (master_doc, "graphene_django", "Graphene Django Documentation", [author], 1)
] ]
# If true, show URL addresses after external links. # If true, show URL addresses after external links.
@ -334,7 +334,7 @@ texinfo_documents = [
( (
master_doc, master_doc,
"Graphene-Django", "Graphene-Django",
u"Graphene Django Documentation", "Graphene Django Documentation",
author, author,
"Graphene Django", "Graphene Django",
"One line description of project.", "One line description of project.",

View File

@ -46,7 +46,7 @@ class Reporter(models.Model):
"Reporter Type", "Reporter Type",
null=True, null=True,
blank=True, blank=True,
choices=[(1, u"Regular"), (2, u"CNN Reporter")], choices=[(1, "Regular"), (2, "CNN Reporter")],
) )
def __str__(self): # __unicode__ on Python 2 def __str__(self): # __unicode__ on Python 2
@ -105,7 +105,7 @@ class Article(models.Model):
"Importance", "Importance",
null=True, null=True,
blank=True, blank=True,
choices=[(1, u"Very important"), (2, u"Not as important")], choices=[(1, "Very important"), (2, "Not as important")],
) )
def __str__(self): # __unicode__ on Python 2 def __str__(self): # __unicode__ on Python 2