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
|
@ -19,7 +19,7 @@ test_srs = ({
|
|||
# From proj's "cs2cs -le" and Wikipedia (semi-minor only)
|
||||
'ellipsoid': (6378137.0, 6356752.3, 298.257223563),
|
||||
'eprec': (1, 1, 9),
|
||||
'wkt': re.sub('[\s+]', '', """
|
||||
'wkt': re.sub(r'[\s+]', '', """
|
||||
GEOGCS["WGS 84",
|
||||
DATUM["WGS_1984",
|
||||
SPHEROID["WGS 84",6378137,298.257223563,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue