diff piecrust/routing.py @ 1168:10520472cc73

routing: Fix breakages with routing on some versions of Python. Finally figured what happened with change 6baa94da8b16 (this is a Mercurial hash by the way if you're looking at the Git mirror). Between Python 3.6 and 3.7 there was a change where the percent sign ('%') went from being escaped by `re.escape` to _not_ being escaped. So now we need to use different regex patterns dependin on the Python version, yay.
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 04 Oct 2019 11:13:33 -0700
parents 6baa94da8b16
children
line wrap: on
line diff
--- a/piecrust/routing.py	Fri Oct 04 10:07:38 2019 -0700
+++ b/piecrust/routing.py	Fri Oct 04 11:13:33 2019 -0700
@@ -1,5 +1,6 @@
 import re
 import os.path
+import sys
 import copy
 import logging
 import urllib.parse
@@ -10,8 +11,13 @@
 
 
 route_re = re.compile(r'%((?P<qual>[\w\d]+):)?(?P<var>\+)?(?P<name>\w+)%')
-route_esc_re = re.compile(
-    r'%((?P<qual>[\w\d]+)\\:)?(?P<var>\\\+)?(?P<name>\w+)%')
+if sys.hexversion >= 0x3070000:
+    route_esc_re = re.compile(
+        r'%((?P<qual>[\w\d]+)\\:)?(?P<var>\\\+)?(?P<name>\w+)%')
+else:
+    route_esc_re = re.compile(
+        r'\\%((?P<qual>[\w\d]+)\\:)?(?P<var>\\\+)?(?P<name>\w+)\\%')
+
 ugly_url_cleaner = re.compile(r'\.html$')