diff options
| author | Bas Westerbaan <bas@westerbaan.name> | 2013-01-28 14:32:01 +0100 |
|---|---|---|
| committer | Bas Westerbaan <bas@westerbaan.name> | 2013-01-28 14:32:01 +0100 |
| commit | 6fa0f46a122c4f6be35415a3e65dcdc542fd3acd (patch) | |
| tree | 0ef82a9349d431e62fcb33300da178d2dcc8d2bb | |
| parent | 69ba3c9bf9737df1ade7832986b0fa6f1659b04d (diff) | |
| download | msgpack-python-6fa0f46a122c4f6be35415a3e65dcdc542fd3acd.tar.gz | |
setup: remove Python 2 only syntax
| -rw-r--r-- | setup.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -41,10 +41,10 @@ class BuildExt(build_ext): try: ext.sources = list(map(ensure_source, ext.sources)) except NoCython: - print "WARNING" - print "Cython is required for building extension from checkout." - print "Install Cython >= 0.16 or install msgpack from PyPI." - print "Falling back to pure Python implementation." + print("WARNING") + print("Cython is required for building extension from checkout.") + print("Install Cython >= 0.16 or install msgpack from PyPI.") + print("Falling back to pure Python implementation.") return return build_ext.build_extension(self, ext) |
