mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	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
This commit is contained in:
		| @@ -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' | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user