diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-06 10:01:51 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-06 10:01:51 -0500 |
| commit | 1524a98d7e0e5344134ef51e77cfe5a04e582a8f (patch) | |
| tree | 564aff3488439dc3c9e75ac46bc529a1010bc335 /pkg_resources | |
| parent | 32ce474415accc4ad11fdbab57f7a65176d4197b (diff) | |
| download | python-setuptools-git-1524a98d7e0e5344134ef51e77cfe5a04e582a8f.tar.gz | |
Equal signs are now allowed in entry point names.
Diffstat (limited to 'pkg_resources')
| -rw-r--r-- | pkg_resources/tests/test_resources.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources/tests/test_resources.py b/pkg_resources/tests/test_resources.py index 4a82167b..00ba0cf5 100644 --- a/pkg_resources/tests/test_resources.py +++ b/pkg_resources/tests/test_resources.py @@ -297,7 +297,7 @@ class TestEntryPoints: def testRejects(self): 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) except ValueError: pass |
