Commit 1524a98d authored by Jason R. Coombs's avatar Jason R. Coombs

Equal signs are now allowed in entry point names.

parent 32ce4744
...@@ -297,7 +297,7 @@ class TestEntryPoints: ...@@ -297,7 +297,7 @@ class TestEntryPoints:
def testRejects(self): def testRejects(self):
for ep in [ for ep in [
"foo", "x=1=2", "x=a:b:c", "q=x/na", "fez=pish:tush-z", "x=f[a]>2", "foo", "x=a:b:c", "q=x/na", "fez=pish:tush-z", "x=f[a]>2",
]: ]:
try: EntryPoint.parse(ep) try: EntryPoint.parse(ep)
except ValueError: pass except ValueError: pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment