summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Schlichting <hanno@hannosch.eu>2009-07-16 18:08:20 +0200
committerHanno Schlichting <hanno@hannosch.eu>2009-07-16 18:08:20 +0200
commit600590d491609a42e145cfb57cd26d4bf9817a10 (patch)
tree1ea403daaca339acbc88b5296a48db6325e849e7
parent457f95783acaed3c59668b6c6bf93414c4f1967b (diff)
downloadpython-setuptools-git-600590d491609a42e145cfb57cd26d4bf9817a10.tar.gz
Applied patch for Jython api_tests.txt doctest compatibility by pjenvey. This closes #7.
--HG-- branch : distribute extra : rebase_source : f60caa86a529c96b8159fe423098ee2be625658d
-rwxr-xr-xapi_tests.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/api_tests.txt b/api_tests.txt
index 735ad8dd..823d815f 100755
--- a/api_tests.txt
+++ b/api_tests.txt
@@ -170,8 +170,8 @@ You can append a path entry to a working set using ``add_entry()``::
>>> ws.entries
['http://example.com/something']
>>> ws.add_entry(pkg_resources.__file__)
- >>> ws.entries
- ['http://example.com/something', '...pkg_resources.py...']
+ >>> ws.entries == ['http://example.com/something', pkg_resources.__file__]
+ True
Multiple additions result in multiple entries, even if the entry is already in
the working set (because ``sys.path`` can contain the same entry more than