- From: Mark Nottingham <mnot@mnot.net>
- Date: Thu, 25 Dec 2014 04:27:16 -0500
- To: Bjoern Hoehrmann <derhoermi@gmx.net>
- Cc: Sam Ruby <rubys@intertwingly.net>, "public-ietf-w3c@w3.org" <public-ietf-w3c@w3.org>
> On 23 Dec 2014, at 9:42 am, Bjoern Hoehrmann <derhoermi@gmx.net> wrote: > > Given > > # reg-name = *( unreserved / pct-encoded / sub-delims ) > reg_name = r"(?: %(unreserved)s | %(pct_encoded)s | %(sub_delims)s )*" % locals() > > # userinfo = *( unreserved / pct-encoded / sub-delims / ":" ) > userinfo = r"(?: %(unreserved)s | %(pct_encoded)s | %(sub_delims)s | : )" % locals() > > I would say there is a missing `*` at the end of `userinfo` Update, thanks! -- Mark Nottingham http://www.mnot.net/
Received on Thursday, 25 December 2014 09:27:40 UTC