diff options
| author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-06-21 09:32:50 +0100 |
|---|---|---|
| committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-06-21 09:32:50 +0100 |
| commit | 5861e0443331531fda2525fc4a714101968cb537 (patch) | |
| tree | 092db55fddf6bfbc0a96b2877be531594929dedf /tests | |
| parent | e65d621e1661512a4bcfb7d9a5320d3faa96aebe (diff) | |
| download | python-setuptools-git-5861e0443331531fda2525fc4a714101968cb537.tar.gz | |
Fixed some bugs, tests now also all pass on 2.7 and 3.2.
--HG--
branch : distribute
extra : rebase_source : 25c6042a716c49e3576605c3cf4e2878d5b85c18
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/api_tests.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/api_tests.txt b/tests/api_tests.txt index c2e63b24..65443e09 100644 --- a/tests/api_tests.txt +++ b/tests/api_tests.txt @@ -219,7 +219,7 @@ distribution is added to a working set. The callback is immediately invoked once for each existing distribution in the working set, and then is called again for new distributions added thereafter:: - >>> def added(dist): print("Added", dist) + >>> def added(dist): print("Added %s" % dist) >>> ws.subscribe(added) Added Bar 0.9 >>> foo12 = Distribution(project_name="Foo", version="1.2", location="f12") |
