diff options
| author | INADA Naoki <inada-n@klab.com> | 2012-08-19 03:04:19 +0900 |
|---|---|---|
| committer | INADA Naoki <inada-n@klab.com> | 2012-08-19 03:04:19 +0900 |
| commit | 29b4b785d0152c964819bc613a0321214df78c47 (patch) | |
| tree | 0a4dff56fc296bc8d00eaa112b4bb4739b15fe53 /setup.py | |
| parent | 670bb3ca154d5f86fe72fe34a73d0ca8b7bd315a (diff) | |
| download | msgpack-python-29b4b785d0152c964819bc613a0321214df78c47.tar.gz | |
Fix build_ext doesn't work on Python 3.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ Install Cython >= 0.16 or install msgpack from PyPI. class BuildExt(build_ext): def build_extension(self, ext): - ext.sources = map(ensure_source, ext.sources) + ext.sources = list(map(ensure_source, ext.sources)) return build_ext.build_extension(self, ext) |
