Commit 5641ea93 authored by Jim Fulton's avatar Jim Fulton

another test passing w 3.2

parent 039a80a5
...@@ -212,13 +212,13 @@ modules installed. ...@@ -212,13 +212,13 @@ modules installed.
We can also run the py-demo script. Here we'll just print_(out) We can also run the py-demo script. Here we'll just print_(out)
the bits if the path added to reflect the eggs: the bits if the path added to reflect the eggs:
>>> print_(system(join(sample_buildout, 'bin', 'py-demo'), end='') >>> print_(system(join(sample_buildout, 'bin', 'py-demo'),
... """import os, sys ... """import os, sys
... for p in sys.path: ... for p in sys.path:
... if 'demo' in p: ... if 'demo' in p:
... print_(os.path.basename(p)) ... _ = sys.stdout.write(os.path.basename(p)+'\\n')
... ...
... """).replace('>>> ', '').replace('... ', ''), ... """).replace('>>> ', '').replace('... ', ''), end='')
... # doctest: +ELLIPSIS +NORMALIZE_WHITESPACE ... # doctest: +ELLIPSIS +NORMALIZE_WHITESPACE
demo-0.2-py2.4.egg demo-0.2-py2.4.egg
demoneeded-1.2c1-py2.4.egg demoneeded-1.2c1-py2.4.egg
......
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