reSWIGged
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31714 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -5363,6 +5363,10 @@ class TreeCtrl(_core.Control):
|
||||
"""SetItemBold(self, TreeItemId item, bool bold=True)"""
|
||||
return _controls_.TreeCtrl_SetItemBold(*args, **kwargs)
|
||||
|
||||
def SetItemDropHighlight(*args, **kwargs):
|
||||
"""SetItemDropHighlight(self, TreeItemId item, bool highlight=True)"""
|
||||
return _controls_.TreeCtrl_SetItemDropHighlight(*args, **kwargs)
|
||||
|
||||
def SetItemTextColour(*args, **kwargs):
|
||||
"""SetItemTextColour(self, TreeItemId item, Colour col)"""
|
||||
return _controls_.TreeCtrl_SetItemTextColour(*args, **kwargs)
|
||||
|
@@ -29046,6 +29046,49 @@ static PyObject *_wrap_TreeCtrl_SetItemBold(PyObject *, PyObject *args, PyObject
|
||||
}
|
||||
|
||||
|
||||
static PyObject *_wrap_TreeCtrl_SetItemDropHighlight(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj;
|
||||
wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
|
||||
wxTreeItemId *arg2 = 0 ;
|
||||
bool arg3 = (bool) true ;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
PyObject * obj2 = 0 ;
|
||||
char *kwnames[] = {
|
||||
(char *) "self",(char *) "item",(char *) "highlight", NULL
|
||||
};
|
||||
|
||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:TreeCtrl_SetItemDropHighlight",kwnames,&obj0,&obj1,&obj2)) goto fail;
|
||||
SWIG_Python_ConvertPtr(obj0, (void **)&arg1, SWIGTYPE_p_wxPyTreeCtrl, SWIG_POINTER_EXCEPTION | 0);
|
||||
if (SWIG_arg_fail(1)) SWIG_fail;
|
||||
{
|
||||
SWIG_Python_ConvertPtr(obj1, (void **)&arg2, SWIGTYPE_p_wxTreeItemId, SWIG_POINTER_EXCEPTION | 0);
|
||||
if (SWIG_arg_fail(2)) SWIG_fail;
|
||||
if (arg2 == NULL) {
|
||||
SWIG_null_ref("wxTreeItemId");
|
||||
}
|
||||
if (SWIG_arg_fail(2)) SWIG_fail;
|
||||
}
|
||||
if (obj2) {
|
||||
{
|
||||
arg3 = (bool)(SWIG_As_bool(obj2));
|
||||
if (SWIG_arg_fail(3)) SWIG_fail;
|
||||
}
|
||||
}
|
||||
{
|
||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||
(arg1)->SetItemDropHighlight((wxTreeItemId const &)*arg2,arg3);
|
||||
|
||||
wxPyEndAllowThreads(__tstate);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
Py_INCREF(Py_None); resultobj = Py_None;
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
static PyObject *_wrap_TreeCtrl_SetItemTextColour(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj;
|
||||
wxPyTreeCtrl *arg1 = (wxPyTreeCtrl *) 0 ;
|
||||
@@ -35133,6 +35176,7 @@ static PyMethodDef SwigMethods[] = {
|
||||
{ (char *)"TreeCtrl_SetItemPyData", (PyCFunction) _wrap_TreeCtrl_SetItemPyData, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"TreeCtrl_SetItemHasChildren", (PyCFunction) _wrap_TreeCtrl_SetItemHasChildren, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"TreeCtrl_SetItemBold", (PyCFunction) _wrap_TreeCtrl_SetItemBold, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"TreeCtrl_SetItemDropHighlight", (PyCFunction) _wrap_TreeCtrl_SetItemDropHighlight, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"TreeCtrl_SetItemTextColour", (PyCFunction) _wrap_TreeCtrl_SetItemTextColour, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"TreeCtrl_SetItemBackgroundColour", (PyCFunction) _wrap_TreeCtrl_SetItemBackgroundColour, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"TreeCtrl_SetItemFont", (PyCFunction) _wrap_TreeCtrl_SetItemFont, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
|
@@ -121,10 +121,12 @@ RA_HORIZONTAL = _core_.RA_HORIZONTAL
|
||||
RA_VERTICAL = _core_.RA_VERTICAL
|
||||
RA_SPECIFY_ROWS = _core_.RA_SPECIFY_ROWS
|
||||
RA_SPECIFY_COLS = _core_.RA_SPECIFY_COLS
|
||||
RA_USE_CHECKBOX = _core_.RA_USE_CHECKBOX
|
||||
RB_GROUP = _core_.RB_GROUP
|
||||
RB_SINGLE = _core_.RB_SINGLE
|
||||
SB_HORIZONTAL = _core_.SB_HORIZONTAL
|
||||
SB_VERTICAL = _core_.SB_VERTICAL
|
||||
RB_USE_CHECKBOX = _core_.RB_USE_CHECKBOX
|
||||
ST_SIZEGRIP = _core_.ST_SIZEGRIP
|
||||
ST_NO_AUTORESIZE = _core_.ST_NO_AUTORESIZE
|
||||
FLOOD_SURFACE = _core_.FLOOD_SURFACE
|
||||
@@ -7104,7 +7106,7 @@ class Window(EvtHandler):
|
||||
|
||||
def RefreshRect(*args, **kwargs):
|
||||
"""
|
||||
RefreshRect(self, Rect rect)
|
||||
RefreshRect(self, Rect rect, bool eraseBackground=True)
|
||||
|
||||
Redraws the contents of the given rectangle: the area inside it will
|
||||
be repainted. This is the same as Refresh but has a nicer syntax.
|
||||
|
@@ -28412,23 +28412,31 @@ static PyObject *_wrap_Window_RefreshRect(PyObject *, PyObject *args, PyObject *
|
||||
PyObject *resultobj;
|
||||
wxWindow *arg1 = (wxWindow *) 0 ;
|
||||
wxRect *arg2 = 0 ;
|
||||
bool arg3 = (bool) true ;
|
||||
wxRect temp2 ;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
PyObject * obj2 = 0 ;
|
||||
char *kwnames[] = {
|
||||
(char *) "self",(char *) "rect", NULL
|
||||
(char *) "self",(char *) "rect",(char *) "eraseBackground", NULL
|
||||
};
|
||||
|
||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:Window_RefreshRect",kwnames,&obj0,&obj1)) goto fail;
|
||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:Window_RefreshRect",kwnames,&obj0,&obj1,&obj2)) goto fail;
|
||||
SWIG_Python_ConvertPtr(obj0, (void **)&arg1, SWIGTYPE_p_wxWindow, SWIG_POINTER_EXCEPTION | 0);
|
||||
if (SWIG_arg_fail(1)) SWIG_fail;
|
||||
{
|
||||
arg2 = &temp2;
|
||||
if ( ! wxRect_helper(obj1, &arg2)) SWIG_fail;
|
||||
}
|
||||
if (obj2) {
|
||||
{
|
||||
arg3 = (bool)(SWIG_As_bool(obj2));
|
||||
if (SWIG_arg_fail(3)) SWIG_fail;
|
||||
}
|
||||
}
|
||||
{
|
||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||
(arg1)->RefreshRect((wxRect const &)*arg2);
|
||||
(arg1)->RefreshRect((wxRect const &)*arg2,arg3);
|
||||
|
||||
wxPyEndAllowThreads(__tstate);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
@@ -46347,6 +46355,9 @@ SWIGEXPORT(void) SWIG_init(void) {
|
||||
{
|
||||
PyDict_SetItemString(d,"RA_SPECIFY_COLS", SWIG_From_int((int)(wxRA_SPECIFY_COLS)));
|
||||
}
|
||||
{
|
||||
PyDict_SetItemString(d,"RA_USE_CHECKBOX", SWIG_From_int((int)(wxRA_USE_CHECKBOX)));
|
||||
}
|
||||
{
|
||||
PyDict_SetItemString(d,"RB_GROUP", SWIG_From_int((int)(wxRB_GROUP)));
|
||||
}
|
||||
@@ -46359,6 +46370,9 @@ SWIGEXPORT(void) SWIG_init(void) {
|
||||
{
|
||||
PyDict_SetItemString(d,"SB_VERTICAL", SWIG_From_int((int)(wxSB_VERTICAL)));
|
||||
}
|
||||
{
|
||||
PyDict_SetItemString(d,"RB_USE_CHECKBOX", SWIG_From_int((int)(wxRB_USE_CHECKBOX)));
|
||||
}
|
||||
{
|
||||
PyDict_SetItemString(d,"ST_SIZEGRIP", SWIG_From_int((int)(wxST_SIZEGRIP)));
|
||||
}
|
||||
|
@@ -295,7 +295,7 @@ def IsStockLabel(*args, **kwargs):
|
||||
return _misc_.IsStockLabel(*args, **kwargs)
|
||||
|
||||
def GetStockLabel(*args, **kwargs):
|
||||
"""GetStockLabel(int id) -> String"""
|
||||
"""GetStockLabel(int id, bool withCodes=True, String accelerator=EmptyString) -> String"""
|
||||
return _misc_.GetStockLabel(*args, **kwargs)
|
||||
|
||||
def Bell(*args, **kwargs):
|
||||
@@ -3731,29 +3731,29 @@ class DateTime(object):
|
||||
"""
|
||||
return _misc_.DateTime___sub__(*args)
|
||||
|
||||
def __lt__(*args):
|
||||
def __lt__(*args, **kwargs):
|
||||
"""__lt__(self, DateTime other) -> bool"""
|
||||
return _misc_.DateTime___lt__(*args)
|
||||
return _misc_.DateTime___lt__(*args, **kwargs)
|
||||
|
||||
def __le__(*args):
|
||||
def __le__(*args, **kwargs):
|
||||
"""__le__(self, DateTime other) -> bool"""
|
||||
return _misc_.DateTime___le__(*args)
|
||||
return _misc_.DateTime___le__(*args, **kwargs)
|
||||
|
||||
def __gt__(*args):
|
||||
def __gt__(*args, **kwargs):
|
||||
"""__gt__(self, DateTime other) -> bool"""
|
||||
return _misc_.DateTime___gt__(*args)
|
||||
return _misc_.DateTime___gt__(*args, **kwargs)
|
||||
|
||||
def __ge__(*args):
|
||||
def __ge__(*args, **kwargs):
|
||||
"""__ge__(self, DateTime other) -> bool"""
|
||||
return _misc_.DateTime___ge__(*args)
|
||||
return _misc_.DateTime___ge__(*args, **kwargs)
|
||||
|
||||
def __eq__(*args):
|
||||
def __eq__(*args, **kwargs):
|
||||
"""__eq__(self, DateTime other) -> bool"""
|
||||
return _misc_.DateTime___eq__(*args)
|
||||
return _misc_.DateTime___eq__(*args, **kwargs)
|
||||
|
||||
def __ne__(*args):
|
||||
def __ne__(*args, **kwargs):
|
||||
"""__ne__(self, DateTime other) -> bool"""
|
||||
return _misc_.DateTime___ne__(*args)
|
||||
return _misc_.DateTime___ne__(*args, **kwargs)
|
||||
|
||||
def ParseRfc822Date(*args, **kwargs):
|
||||
"""ParseRfc822Date(self, String date) -> int"""
|
||||
|
@@ -3545,20 +3545,38 @@ static PyObject *_wrap_IsStockLabel(PyObject *, PyObject *args, PyObject *kwargs
|
||||
static PyObject *_wrap_GetStockLabel(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj;
|
||||
int arg1 ;
|
||||
bool arg2 = (bool) true ;
|
||||
wxString arg3 = (wxString) wxPyEmptyString ;
|
||||
wxString result;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
PyObject * obj2 = 0 ;
|
||||
char *kwnames[] = {
|
||||
(char *) "id", NULL
|
||||
(char *) "id",(char *) "withCodes",(char *) "accelerator", NULL
|
||||
};
|
||||
|
||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:GetStockLabel",kwnames,&obj0)) goto fail;
|
||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OO:GetStockLabel",kwnames,&obj0,&obj1,&obj2)) goto fail;
|
||||
{
|
||||
arg1 = (int)(SWIG_As_int(obj0));
|
||||
if (SWIG_arg_fail(1)) SWIG_fail;
|
||||
}
|
||||
if (obj1) {
|
||||
{
|
||||
arg2 = (bool)(SWIG_As_bool(obj1));
|
||||
if (SWIG_arg_fail(2)) SWIG_fail;
|
||||
}
|
||||
}
|
||||
if (obj2) {
|
||||
{
|
||||
wxString* sptr = wxString_in_helper(obj2);
|
||||
if (sptr == NULL) SWIG_fail;
|
||||
arg3 = *sptr;
|
||||
delete sptr;
|
||||
}
|
||||
}
|
||||
{
|
||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||
result = wxGetStockLabel(arg1);
|
||||
result = wxGetStockLabel(arg1,arg2,arg3);
|
||||
|
||||
wxPyEndAllowThreads(__tstate);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
@@ -22722,15 +22740,18 @@ static PyObject *_wrap_DateTime___sub__(PyObject *self, PyObject *args) {
|
||||
}
|
||||
|
||||
|
||||
static PyObject *_wrap_DateTime___lt__(PyObject *, PyObject *args) {
|
||||
static PyObject *_wrap_DateTime___lt__(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj;
|
||||
wxDateTime *arg1 = (wxDateTime *) 0 ;
|
||||
wxDateTime *arg2 = (wxDateTime *) 0 ;
|
||||
bool result;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
char *kwnames[] = {
|
||||
(char *) "self",(char *) "other", NULL
|
||||
};
|
||||
|
||||
if(!PyArg_ParseTuple(args,(char *)"OO:DateTime___lt__",&obj0,&obj1)) goto fail;
|
||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:DateTime___lt__",kwnames,&obj0,&obj1)) goto fail;
|
||||
SWIG_Python_ConvertPtr(obj0, (void **)&arg1, SWIGTYPE_p_wxDateTime, SWIG_POINTER_EXCEPTION | 0);
|
||||
if (SWIG_arg_fail(1)) SWIG_fail;
|
||||
SWIG_Python_ConvertPtr(obj1, (void **)&arg2, SWIGTYPE_p_wxDateTime, SWIG_POINTER_EXCEPTION | 0);
|
||||
@@ -22751,15 +22772,18 @@ static PyObject *_wrap_DateTime___lt__(PyObject *, PyObject *args) {
|
||||
}
|
||||
|
||||
|
||||
static PyObject *_wrap_DateTime___le__(PyObject *, PyObject *args) {
|
||||
static PyObject *_wrap_DateTime___le__(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj;
|
||||
wxDateTime *arg1 = (wxDateTime *) 0 ;
|
||||
wxDateTime *arg2 = (wxDateTime *) 0 ;
|
||||
bool result;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
char *kwnames[] = {
|
||||
(char *) "self",(char *) "other", NULL
|
||||
};
|
||||
|
||||
if(!PyArg_ParseTuple(args,(char *)"OO:DateTime___le__",&obj0,&obj1)) goto fail;
|
||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:DateTime___le__",kwnames,&obj0,&obj1)) goto fail;
|
||||
SWIG_Python_ConvertPtr(obj0, (void **)&arg1, SWIGTYPE_p_wxDateTime, SWIG_POINTER_EXCEPTION | 0);
|
||||
if (SWIG_arg_fail(1)) SWIG_fail;
|
||||
SWIG_Python_ConvertPtr(obj1, (void **)&arg2, SWIGTYPE_p_wxDateTime, SWIG_POINTER_EXCEPTION | 0);
|
||||
@@ -22780,15 +22804,18 @@ static PyObject *_wrap_DateTime___le__(PyObject *, PyObject *args) {
|
||||
}
|
||||
|
||||
|
||||
static PyObject *_wrap_DateTime___gt__(PyObject *, PyObject *args) {
|
||||
static PyObject *_wrap_DateTime___gt__(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj;
|
||||
wxDateTime *arg1 = (wxDateTime *) 0 ;
|
||||
wxDateTime *arg2 = (wxDateTime *) 0 ;
|
||||
bool result;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
char *kwnames[] = {
|
||||
(char *) "self",(char *) "other", NULL
|
||||
};
|
||||
|
||||
if(!PyArg_ParseTuple(args,(char *)"OO:DateTime___gt__",&obj0,&obj1)) goto fail;
|
||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:DateTime___gt__",kwnames,&obj0,&obj1)) goto fail;
|
||||
SWIG_Python_ConvertPtr(obj0, (void **)&arg1, SWIGTYPE_p_wxDateTime, SWIG_POINTER_EXCEPTION | 0);
|
||||
if (SWIG_arg_fail(1)) SWIG_fail;
|
||||
SWIG_Python_ConvertPtr(obj1, (void **)&arg2, SWIGTYPE_p_wxDateTime, SWIG_POINTER_EXCEPTION | 0);
|
||||
@@ -22809,15 +22836,18 @@ static PyObject *_wrap_DateTime___gt__(PyObject *, PyObject *args) {
|
||||
}
|
||||
|
||||
|
||||
static PyObject *_wrap_DateTime___ge__(PyObject *, PyObject *args) {
|
||||
static PyObject *_wrap_DateTime___ge__(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj;
|
||||
wxDateTime *arg1 = (wxDateTime *) 0 ;
|
||||
wxDateTime *arg2 = (wxDateTime *) 0 ;
|
||||
bool result;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
char *kwnames[] = {
|
||||
(char *) "self",(char *) "other", NULL
|
||||
};
|
||||
|
||||
if(!PyArg_ParseTuple(args,(char *)"OO:DateTime___ge__",&obj0,&obj1)) goto fail;
|
||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:DateTime___ge__",kwnames,&obj0,&obj1)) goto fail;
|
||||
SWIG_Python_ConvertPtr(obj0, (void **)&arg1, SWIGTYPE_p_wxDateTime, SWIG_POINTER_EXCEPTION | 0);
|
||||
if (SWIG_arg_fail(1)) SWIG_fail;
|
||||
SWIG_Python_ConvertPtr(obj1, (void **)&arg2, SWIGTYPE_p_wxDateTime, SWIG_POINTER_EXCEPTION | 0);
|
||||
@@ -22838,15 +22868,18 @@ static PyObject *_wrap_DateTime___ge__(PyObject *, PyObject *args) {
|
||||
}
|
||||
|
||||
|
||||
static PyObject *_wrap_DateTime___eq__(PyObject *, PyObject *args) {
|
||||
static PyObject *_wrap_DateTime___eq__(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj;
|
||||
wxDateTime *arg1 = (wxDateTime *) 0 ;
|
||||
wxDateTime *arg2 = (wxDateTime *) 0 ;
|
||||
bool result;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
char *kwnames[] = {
|
||||
(char *) "self",(char *) "other", NULL
|
||||
};
|
||||
|
||||
if(!PyArg_ParseTuple(args,(char *)"OO:DateTime___eq__",&obj0,&obj1)) goto fail;
|
||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:DateTime___eq__",kwnames,&obj0,&obj1)) goto fail;
|
||||
SWIG_Python_ConvertPtr(obj0, (void **)&arg1, SWIGTYPE_p_wxDateTime, SWIG_POINTER_EXCEPTION | 0);
|
||||
if (SWIG_arg_fail(1)) SWIG_fail;
|
||||
SWIG_Python_ConvertPtr(obj1, (void **)&arg2, SWIGTYPE_p_wxDateTime, SWIG_POINTER_EXCEPTION | 0);
|
||||
@@ -22867,15 +22900,18 @@ static PyObject *_wrap_DateTime___eq__(PyObject *, PyObject *args) {
|
||||
}
|
||||
|
||||
|
||||
static PyObject *_wrap_DateTime___ne__(PyObject *, PyObject *args) {
|
||||
static PyObject *_wrap_DateTime___ne__(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj;
|
||||
wxDateTime *arg1 = (wxDateTime *) 0 ;
|
||||
wxDateTime *arg2 = (wxDateTime *) 0 ;
|
||||
bool result;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
char *kwnames[] = {
|
||||
(char *) "self",(char *) "other", NULL
|
||||
};
|
||||
|
||||
if(!PyArg_ParseTuple(args,(char *)"OO:DateTime___ne__",&obj0,&obj1)) goto fail;
|
||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:DateTime___ne__",kwnames,&obj0,&obj1)) goto fail;
|
||||
SWIG_Python_ConvertPtr(obj0, (void **)&arg1, SWIGTYPE_p_wxDateTime, SWIG_POINTER_EXCEPTION | 0);
|
||||
if (SWIG_arg_fail(1)) SWIG_fail;
|
||||
SWIG_Python_ConvertPtr(obj1, (void **)&arg2, SWIGTYPE_p_wxDateTime, SWIG_POINTER_EXCEPTION | 0);
|
||||
@@ -31436,12 +31472,12 @@ static PyMethodDef SwigMethods[] = {
|
||||
{ (char *)"DateTime___isub__", _wrap_DateTime___isub__, METH_VARARGS, NULL},
|
||||
{ (char *)"DateTime___add__", _wrap_DateTime___add__, METH_VARARGS, NULL},
|
||||
{ (char *)"DateTime___sub__", _wrap_DateTime___sub__, METH_VARARGS, NULL},
|
||||
{ (char *)"DateTime___lt__", _wrap_DateTime___lt__, METH_VARARGS, NULL},
|
||||
{ (char *)"DateTime___le__", _wrap_DateTime___le__, METH_VARARGS, NULL},
|
||||
{ (char *)"DateTime___gt__", _wrap_DateTime___gt__, METH_VARARGS, NULL},
|
||||
{ (char *)"DateTime___ge__", _wrap_DateTime___ge__, METH_VARARGS, NULL},
|
||||
{ (char *)"DateTime___eq__", _wrap_DateTime___eq__, METH_VARARGS, NULL},
|
||||
{ (char *)"DateTime___ne__", _wrap_DateTime___ne__, METH_VARARGS, NULL},
|
||||
{ (char *)"DateTime___lt__", (PyCFunction) _wrap_DateTime___lt__, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"DateTime___le__", (PyCFunction) _wrap_DateTime___le__, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"DateTime___gt__", (PyCFunction) _wrap_DateTime___gt__, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"DateTime___ge__", (PyCFunction) _wrap_DateTime___ge__, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"DateTime___eq__", (PyCFunction) _wrap_DateTime___eq__, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"DateTime___ne__", (PyCFunction) _wrap_DateTime___ne__, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"DateTime_ParseRfc822Date", (PyCFunction) _wrap_DateTime_ParseRfc822Date, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"DateTime_ParseFormat", (PyCFunction) _wrap_DateTime_ParseFormat, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"DateTime_ParseDateTime", (PyCFunction) _wrap_DateTime_ParseDateTime, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
|
Reference in New Issue
Block a user