From b8fc93e83a646adbe83781feccc1d106310a79f2 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 17 Feb 2011 01:54:04 -0500 Subject: Undo the inner squiggly regex fix introduced in commit #9595236 because the regex breaks on Jython. See https://github.com/Pylons/pyramid/issues/#issue/123 --- CHANGES.txt | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index 9a78dcbee..be295a51d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,19 +1,6 @@ Next release ============ -Bug Fixes ---------- - -- URL pattern markers used in URL dispatch are permitted to specify a custom - regex. For example, the pattern ``/{foo:\d+}`` means to match ``/12345`` - (foo==12345 in the match dictionary) but not ``/abc``. However, custom - regexes in a pattern marker which used squiggly brackets did not work. For - example, ``/{foo:\d{4}}`` would fail to match ``/1234`` and - ``/{foo:\d{1,2}}`` would fail to match ``/1`` or ``/11``. One level of - inner squiggly brackets is now recognized so that the prior two patterns - given as examples now work. See also - https://github.com/Pylons/pyramid/issues/#issue/123. - Features -------- -- cgit v1.2.3