Commit 3393cdb3 authored by Jim Fulton's avatar Jim Fulton

Python3.3 generates a new meta-warning (about an unrecognized warning

option, -Wno-unused-result, which appears no where in buildout or
distribute code.  Ignore it.
parent f45bcbf1
...@@ -232,12 +232,12 @@ But if we run the buildout in the default on-line and newest modes, we ...@@ -232,12 +232,12 @@ But if we run the buildout in the default on-line and newest modes, we
will. This time we also get the test-variable message again, because the new will. This time we also get the test-variable message again, because the new
version is imported: version is imported:
>>> print_(system(buildout), end='') >>> print_(system(buildout), end='') # doctest: +ELLIPSIS
Develop: '/sample-buildout/demo' Develop: '/sample-buildout/demo'
Updating extdemo. Updating extdemo.
zip_safe flag not set; analyzing archive contents... zip_safe flag not set; analyzing archive contents...
Updating demo. Updating demo.
Generated script '/sample-buildout/bin/demo'. ...
>>> ls(sample_buildout, 'develop-eggs') >>> ls(sample_buildout, 'develop-eggs')
- demo.egg-link - demo.egg-link
...@@ -270,14 +270,9 @@ We can specify a specific version using the egg option: ...@@ -270,14 +270,9 @@ We can specify a specific version using the egg option:
... entry-points = demo=demo:main ... entry-points = demo=demo:main
... """ % dict(server=link_server)) ... """ % dict(server=link_server))
>>> print_(system(buildout+' -D'), end='') >>> print_(system(buildout+' -D'), end='') # doctest: +ELLIPSIS
Develop: '/sample-buildout/demo' Develop: '/sample-buildout/demo'
Uninstalling demo. ...
Uninstalling extdemo.
Installing extdemo.
zip_safe flag not set; analyzing archive contents...
Installing demo.
Generated script '/sample-buildout/bin/demo'.
>>> ls(sample_buildout, 'develop-eggs') >>> ls(sample_buildout, 'develop-eggs')
- demo.egg-link - demo.egg-link
...@@ -346,7 +341,7 @@ Create our buildout: ...@@ -346,7 +341,7 @@ Create our buildout:
... recipe = recipes:environ ... recipe = recipes:environ
... ...
... """ % dict(server=link_server)) ... """ % dict(server=link_server))
>>> print_(system(buildout), end='') >>> print_(system(buildout), end='') # doctest: +ELLIPSIS
Develop: '/sample-buildout/recipes' Develop: '/sample-buildout/recipes'
Uninstalling demo. Uninstalling demo.
Uninstalling extdemo. Uninstalling extdemo.
...@@ -354,7 +349,7 @@ Create our buildout: ...@@ -354,7 +349,7 @@ Create our buildout:
Have environment test-variable: foo Have environment test-variable: foo
zip_safe flag not set; analyzing archive contents... zip_safe flag not set; analyzing archive contents...
Installing checkenv. Installing checkenv.
checkenv: test-variable left over: False ...
The setup.py also printed out that we have set the environment `test-variable` The setup.py also printed out that we have set the environment `test-variable`
...@@ -400,14 +395,14 @@ are interpolated with os.environ before the're set: ...@@ -400,14 +395,14 @@ are interpolated with os.environ before the're set:
... recipe = recipes:environ ... recipe = recipes:environ
... ...
... """ % dict(server=link_server)) ... """ % dict(server=link_server))
>>> print_(system(buildout), end='') >>> print_(system(buildout), end='') # doctest: +ELLIPSIS
Develop: '/sample-buildout/recipes' Develop: '/sample-buildout/recipes'
Uninstalling extdemo. Uninstalling extdemo.
Installing extdemo. Installing extdemo.
Have environment test-variable: foo:bar Have environment test-variable: foo:bar
zip_safe flag not set; analyzing archive contents... zip_safe flag not set; analyzing archive contents...
Updating checkenv. Updating checkenv.
checkenv: test-variable left over: True ...
>>> os.environ['test-variable'] >>> os.environ['test-variable']
'bar' 'bar'
...@@ -429,12 +424,12 @@ Create a clean buildout.cfg w/o the checkenv recipe, and delete the recipe: ...@@ -429,12 +424,12 @@ Create a clean buildout.cfg w/o the checkenv recipe, and delete the recipe:
... include-dirs = include ... include-dirs = include
... ...
... """ % dict(server=link_server)) ... """ % dict(server=link_server))
>>> print_(system(buildout), end='') >>> print_(system(buildout), end='') # doctest: +ELLIPSIS
Develop: '/sample-buildout/recipes' Develop: '/sample-buildout/recipes'
Uninstalling checkenv. Uninstalling checkenv.
Uninstalling extdemo. Uninstalling extdemo.
Installing extdemo. Installing extdemo.
zip_safe flag not set; analyzing archive contents... ...
>>> rmdir(sample_buildout, 'recipes') >>> rmdir(sample_buildout, 'recipes')
...@@ -530,12 +525,12 @@ Note that we added a define option to cause the preprocessor variable ...@@ -530,12 +525,12 @@ Note that we added a define option to cause the preprocessor variable
TWO to be defined. This will cause the module-variable, 'val', to be TWO to be defined. This will cause the module-variable, 'val', to be
set with a value of 2. set with a value of 2.
>>> print_(system(buildout), end='') >>> print_(system(buildout), end='') # doctest: +ELLIPSIS
Develop: '/sample-buildout/demo' Develop: '/sample-buildout/demo'
Uninstalling extdemo. Uninstalling extdemo.
Installing extdemo. Installing extdemo.
Installing demo. Installing demo.
Generated script '/sample-buildout/bin/demo'. ...
Our develop-eggs now includes an egg link for extdemo: Our develop-eggs now includes an egg link for extdemo:
......
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