summaryrefslogtreecommitdiff
path: root/src/pkg/path/match.go
AgeCommit message (Collapse)AuthorFilesLines
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-8/+10
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+207
2011-09-13Imported Upstream version 60Ondřej Surý1-207/+0
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-77/+6
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-0/+74
2010-02-25path: Fix bug in Match with non-greedy starsKevin Ballard1-1/+8
path.Match() errors out when testing "*x" against "xxx" because it matches the star non-greedily. Ensure that the last chunk consumes the rest of the name. R=r, rsc CC=golang-dev http://codereview.appspot.com/223050 Committer: Russ Cox <rsc@golang.org>
2010-02-24path: add MatchRuss Cox1-0/+197
R=eridius, r, rog CC=golang-dev http://codereview.appspot.com/217088