summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-02-17 01:54:04 -0500
committerChris McDonough <chrism@plope.com>2011-02-17 01:54:04 -0500
commitb8fc93e83a646adbe83781feccc1d106310a79f2 (patch)
treec3bd308e34bd01779c9db6636105e8ab02c42dcd /CHANGES.txt
parent228b54cd3623c542104fbd9af7b8fe4b6d836cf1 (diff)
downloadpyramid-b8fc93e83a646adbe83781feccc1d106310a79f2.tar.gz
pyramid-b8fc93e83a646adbe83781feccc1d106310a79f2.tar.bz2
pyramid-b8fc93e83a646adbe83781feccc1d106310a79f2.zip
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
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt13
1 files changed, 0 insertions, 13 deletions
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
--------