~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: John Arbash Meinel
  • Date: 2008-07-24 04:18:49 UTC
  • mto: (0.17.18 trunk)
  • mto: This revision was merged to the branch mainline in revision 4280.
  • Revision ID: john@arbash-meinel.com-20080724041849-06lrpzhaxtd1qvyq
Copy the EquivalenceTable code into pyrex and get it under test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
        else:
75
75
            ext_modules.append(Extension(module_name, [c_name]))
76
76
 
77
 
# add_pyrex_extension('_groupcompress_c')
 
77
add_pyrex_extension('_groupcompress_c')
78
78
 
79
79
 
80
80
if __name__ == '__main__':
91
91
          package_dir={'bzrlib.plugins.groupcompress': '.'},
92
92
          cmdclass={'build_ext': build_ext_if_possible},
93
93
          ext_modules=ext_modules,
94
 
          }
 
94
          )