~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_dirstate_helpers_c.pyx

  • Committer: Robert Collins
  • Date: 2008-09-24 04:15:03 UTC
  • mto: This revision was merged to the branch mainline in revision 3732.
  • Revision ID: robertc@robertcollins.net-20080924041503-5kt95yad0omycqqa
 * The C extensions now build on python 2.4 (Robert Collins, #271939)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
from bzrlib.dirstate import DirState
24
24
 
25
25
 
 
26
#python2.4 support
 
27
cdef extern from "python-compat.h":
 
28
    pass
 
29
 
26
30
# Give Pyrex some function definitions for it to understand.
27
31
# All of these are just hints to Pyrex, so that it can try to convert python
28
32
# objects into similar C objects. (such as PyInt => int).