mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +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
|
@ -686,7 +686,7 @@ class ExecutorUnitTests(TestCase):
|
|||
self.assertEqual(plan, [(a2_impl, True)])
|
||||
|
||||
def test_minimize_rollbacks_branchy(self):
|
||||
"""
|
||||
r"""
|
||||
Minimize rollbacks when target has multiple in-app children.
|
||||
|
||||
a: 1 <---- 3 <--\
|
||||
|
@ -731,7 +731,7 @@ class ExecutorUnitTests(TestCase):
|
|||
self.assertEqual(plan, exp)
|
||||
|
||||
def test_backwards_nothing_to_do(self):
|
||||
"""
|
||||
r"""
|
||||
If the current state satisfies the given target, do nothing.
|
||||
|
||||
a: 1 <--- 2
|
||||
|
|
|
@ -68,7 +68,7 @@ class GraphTests(SimpleTestCase):
|
|||
)
|
||||
|
||||
def test_complex_graph(self):
|
||||
"""
|
||||
r"""
|
||||
Tests a complex dependency graph:
|
||||
|
||||
app_a: 0001 <-- 0002 <--- 0003 <-- 0004
|
||||
|
|
|
@ -427,7 +427,7 @@ class LoaderTests(TestCase):
|
|||
]})
|
||||
def test_loading_squashed_ref_squashed(self):
|
||||
"Tests loading a squashed migration with a new migration referencing it"
|
||||
"""
|
||||
r"""
|
||||
The sample migrations are structured like this:
|
||||
|
||||
app_1 1 --> 2 ---------------------*--> 3 *--> 4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue