/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: John Arbash Meinel
  • Date: 2010-03-04 17:45:20 UTC
  • mto: (4797.2.26 2.1)
  • mto: This revision was merged to the branch mainline in revision 5075.
  • Revision ID: john@arbash-meinel.com-20100304174520-zmyxm680mwtw41kf
We were using a list, and comparing against a tuple, compare the same types.

Show diffs side-by-side

added added

removed removed

Lines of Context:
186
186
    from distutils.command.build_ext import build_ext
187
187
else:
188
188
    have_pyrex = True
189
 
    pyrex_version_info = map(int, pyrex_version.split('.'))
 
189
    pyrex_version_info = tuple(map(int, pyrex_version.split('.')))
190
190
 
191
191
 
192
192
class build_ext_if_possible(build_ext):