diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2008-06-06 13:58:42 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2008-06-06 13:58:42 +0000 |
| commit | 0433ffa6f62522bb841d3a8a3ffdb9b041cafb66 (patch) | |
| tree | 281dcf366cfa5a8245434588c14ede9f41b4af6a | |
| parent | cf8abd1bf2b33188a14961da3a63e8853d53261a (diff) | |
Fixed #7293 -- Corrected some doctests strings internal to the template module. Thanks, akaihola.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7580 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/template/__init__.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/django/template/__init__.py b/django/template/__init__.py index e60ff64ebf..5c4ab3052a 100644 --- a/django/template/__init__.py +++ b/django/template/__init__.py @@ -467,7 +467,7 @@ class FilterExpression(object): >>> len(fe.filters) 2 >>> fe.var - 'variable' + <Variable: 'variable'> This class should never be instantiated outside of the get_filters_from_token helper function. @@ -598,15 +598,15 @@ class Variable(object): a hard-coded string (if it begins and ends with single or double quote marks):: - >>> c = {'article': {'section':'News'}} + >>> c = {'article': {'section':u'News'}} >>> Variable('article.section').resolve(c) u'News' >>> Variable('article').resolve(c) - {'section': 'News'} + {'section': u'News'} >>> class AClass: pass >>> c = AClass() >>> c.article = AClass() - >>> c.article.section = 'News' + >>> c.article.section = u'News' >>> Variable('article.section').resolve(c) u'News' |
