Merge lp://staging/~cjwatson/storm/py3-print into lp://staging/storm
Proposed by
Colin Watson
Status: | Merged |
---|---|
Merged at revision: | 499 |
Proposed branch: | lp://staging/~cjwatson/storm/py3-print |
Merge into: | lp://staging/storm |
Diff against target: |
1080 lines (+165/-23) 72 files modified
NEWS (+1/-1) setup.py (+3/-0) storm/__init__.py (+2/-0) storm/base.py (+2/-0) storm/cache.py (+2/-0) storm/compat.py (+2/-0) storm/database.py (+2/-0) storm/databases/__init__.py (+2/-0) storm/databases/postgres.py (+2/-0) storm/databases/sqlite.py (+2/-0) storm/event.py (+2/-0) storm/exceptions.py (+2/-0) storm/expr.py (+2/-0) storm/info.py (+2/-0) storm/locals.py (+2/-0) storm/properties.py (+2/-0) storm/references.py (+2/-0) storm/schema/__init__.py (+2/-0) storm/schema/patch.py (+4/-2) storm/schema/schema.py (+3/-1) storm/schema/sharding.py (+2/-0) storm/sqlobject.py (+2/-0) storm/store.py (+3/-1) storm/testing.py (+3/-1) storm/tracer.py (+2/-0) storm/twisted/testing.py (+2/-0) storm/twisted/transact.py (+2/-0) storm/tz.py (+2/-0) storm/uri.py (+2/-0) storm/variables.py (+2/-0) storm/wsgi.py (+2/-0) storm/xid.py (+2/-0) storm/zope/__init__.py (+2/-0) storm/zope/adapters.py (+2/-0) storm/zope/interfaces.py (+2/-0) storm/zope/metaconfigure.py (+2/-0) storm/zope/metadirectives.py (+2/-0) storm/zope/schema.py (+2/-0) storm/zope/testing.py (+2/-0) storm/zope/zstorm.py (+2/-0) tests/__init__.py (+3/-0) tests/base.py (+2/-0) tests/cache.py (+2/-0) tests/database.py (+2/-0) tests/databases/base.py (+2/-0) tests/databases/postgres.py (+2/-0) tests/databases/proxy.py (+2/-0) tests/databases/sqlite.py (+2/-0) tests/event.py (+2/-0) tests/expr.py (+2/-0) tests/helper.py (+2/-0) tests/info.py (+2/-0) tests/mocker.py (+2/-0) tests/properties.py (+2/-0) tests/schema/patch.py (+2/-0) tests/schema/schema.py (+2/-0) tests/schema/sharding.py (+2/-0) tests/sqlobject.py (+2/-0) tests/store/base.py (+2/-0) tests/store/postgres.py (+2/-0) tests/store/sqlite.py (+2/-0) tests/tracer.py (+2/-0) tests/tutorial.txt (+17/-17) tests/twisted/__init__.py (+2/-0) tests/twisted/transact.py (+2/-0) tests/uri.py (+2/-0) tests/variables.py (+2/-0) tests/wsgi.py (+2/-0) tests/zope/__init__.py (+2/-0) tests/zope/adapters.py (+2/-0) tests/zope/testing.py (+2/-0) tests/zope/zstorm.py (+2/-0) |
To merge this branch: | bzr merge lp://staging/~cjwatson/storm/py3-print |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Simon Poirier (community) | Approve | ||
Review via email: mp+368385@code.staging.launchpad.net |
Commit message
Use Python 3-style print functions.
Description of the change
I added "from __future__ import print_function" to all non-trivial .py files in the hope of ensuring that none creep back in before the port is finished.
To post a comment you must log in.
+1 LGTM