summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-07-06 09:17:28 -0400
committerTim Graham <timograham@gmail.com>2015-07-06 09:17:28 -0400
commit69483e022ac3ddd02f086a264c3eb5e3345ccc0c (patch)
treeba901d6916b8e5f9454e3a2358eba5677583ad98
parente7c6a2cf9f37210ed4f784691e44389f38f96d80 (diff)
downloaddjango-69483e022ac3ddd02f086a264c3eb5e3345ccc0c.tar.gz
Removed some u string prefixes in code comments.
-rw-r--r--django/template/base.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/django/template/base.py b/django/template/base.py
index 43df12b6dd..71a97fda80 100644
--- a/django/template/base.py
+++ b/django/template/base.py
@@ -35,7 +35,7 @@ will be raised if the template doesn't have proper syntax.
Sample code:
>>> from django import template
->>> s = u'<html>{% if test %}<h1>{{ varvalue }}</h1>{% endif %}</html>'
+>>> s = '<html>{% if test %}<h1>{{ varvalue }}</h1>{% endif %}</html>'
>>> t = template.Template(s)
(t is now a compiled template, and its render() method can be called multiple
@@ -43,10 +43,10 @@ times with multiple contexts)
>>> c = template.Context({'test':True, 'varvalue': 'Hello'})
>>> t.render(c)
-u'<html><h1>Hello</h1></html>'
+'<html><h1>Hello</h1></html>'
>>> c = template.Context({'test':False, 'varvalue': 'Hello'})
>>> t.render(c)
-u'<html></html>'
+'<html></html>'
"""
from __future__ import unicode_literals
@@ -756,15 +756,15 @@ class Variable(object):
be a hard-coded string (if it begins and ends with single or double quote
marks)::
- >>> c = {'article': {'section':u'News'}}
+ >>> c = {'article': {'section':'News'}}
>>> Variable('article.section').resolve(c)
- u'News'
+ 'News'
>>> Variable('article').resolve(c)
- {'section': u'News'}
+ {'section': 'News'}
>>> class AClass: pass
>>> c = AClass()
>>> c.article = AClass()
- >>> c.article.section = u'News'
+ >>> c.article.section = 'News'
(The example assumes VARIABLE_ATTRIBUTE_SEPARATOR is '.')
"""