mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.
http://bugs.python.org/issue27364
This commit is contained in:
parent
17677d510f
commit
8119b679eb
42 changed files with 82 additions and 82 deletions
|
@ -98,7 +98,7 @@ class IfEqualTagTests(SimpleTestCase):
|
|||
|
||||
@setup({'ifequal-split09': r"{% ifequal a 'slash\man' %}yes{% else %}no{% endifequal %}"})
|
||||
def test_ifequal_split09(self):
|
||||
output = self.engine.render_to_string('ifequal-split09', {'a': 'slash\man'})
|
||||
output = self.engine.render_to_string('ifequal-split09', {'a': r'slash\man'})
|
||||
self.assertEqual(output, 'yes')
|
||||
|
||||
@setup({'ifequal-split10': r"{% ifequal a 'slash\man' %}yes{% else %}no{% endifequal %}"})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue