~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_groupcompress_pyx.pyx

  • Committer: John Arbash Meinel
  • Date: 2009-04-08 16:33:19 UTC
  • mfrom: (3735.2.187 brisbane-core)
  • mto: This revision was merged to the branch mainline in revision 4280.
  • Revision ID: john@arbash-meinel.com-20090408163319-jzin98xnzklj8vun
Merge the a couple rev older brisbane-core into bzr.dev, most things are resolve in favor of bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
#python2.4 support
20
20
cdef extern from "python-compat.h":
21
 
    pass
 
21
    ctypedef int Py_ssize_t # Required for older pyrex versions
22
22
 
23
23
 
24
24
cdef extern from "Python.h":
25
 
    ctypedef int Py_ssize_t # Required for older pyrex versions
26
25
    int PyString_CheckExact(object)
27
26
    char * PyString_AS_STRING(object)
28
27
    Py_ssize_t PyString_GET_SIZE(object)