launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #00358
lp:~edwin-grubbs/launchpad/need_from_future_import_with_statement into lp:launchpad/devel
Edwin Grubbs has proposed merging lp:~edwin-grubbs/launchpad/need_from_future_import_with_statement into lp:launchpad/devel.
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
Buildbot puked on a with-statement, since it's running python2.5. It needs to import it from __future__.
https://lpbuildbot.canonical.com/builders/lp/builds/1113/steps/shell_7/logs/summary
--
https://code.launchpad.net/~edwin-grubbs/launchpad/need_from_future_import_with_statement/+merge/31458
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~edwin-grubbs/launchpad/need_from_future_import_with_statement into lp:launchpad/devel.
=== modified file 'lib/lp/code/browser/tests/test_sourcepackagerecipe.py'
--- lib/lp/code/browser/tests/test_sourcepackagerecipe.py 2010-07-30 13:23:44 +0000
+++ lib/lp/code/browser/tests/test_sourcepackagerecipe.py 2010-07-31 15:14:50 +0000
@@ -4,6 +4,8 @@
"""Tests for the source package recipe view classes and templates."""
+from __future__ import with_statement
+
__metaclass__ = type
Follow ups