1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
use libc::c_int;
use object::*;

#[cfg_attr(windows, link(name="pythonXY"))] extern "C" {
    pub static mut PyRange_Type: PyTypeObject;
    pub static mut PyRangeIter_Type: PyTypeObject;
    pub static mut PyLongRangeIter_Type: PyTypeObject;
}

#[inline(always)]
pub unsafe fn PyRange_Check(op : *mut PyObject) -> c_int {
    (Py_TYPE(op) == &mut PyRange_Type) as c_int
}