mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-29 17:33:09 +00:00
* python/types.c: patch from Ryan Scott to remove misplaced verbosity
when compiling in debug mode. Daniel
This commit is contained in:
parent
93db3c61c0
commit
2de7d9d224
@ -1,3 +1,8 @@
|
|||||||
|
Wed Jun 25 13:40:25 CEST 2008 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
|
* python/types.c: patch from Ryan Scott to remove misplaced verbosity
|
||||||
|
when compiling in debug mode.
|
||||||
|
|
||||||
Wed Jun 25 10:52:05 CEST 2008 Daniel Veillard <veillard@redhat.com>
|
Wed Jun 25 10:52:05 CEST 2008 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
* configure.in NEWS libvirt.spec* doc/* po/*: making libvirt-0.4.4
|
* configure.in NEWS libvirt.spec* doc/* po/*: making libvirt-0.4.4
|
||||||
|
@ -20,10 +20,6 @@ PyObject *
|
|||||||
libvirt_intWrap(int val)
|
libvirt_intWrap(int val)
|
||||||
{
|
{
|
||||||
PyObject *ret;
|
PyObject *ret;
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
printf("libvirt_intWrap: val = %d\n", val);
|
|
||||||
#endif
|
|
||||||
ret = PyInt_FromLong((long) val);
|
ret = PyInt_FromLong((long) val);
|
||||||
return (ret);
|
return (ret);
|
||||||
}
|
}
|
||||||
@ -32,10 +28,6 @@ PyObject *
|
|||||||
libvirt_longWrap(long val)
|
libvirt_longWrap(long val)
|
||||||
{
|
{
|
||||||
PyObject *ret;
|
PyObject *ret;
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
printf("libvirt_longWrap: val = %ld\n", val);
|
|
||||||
#endif
|
|
||||||
ret = PyInt_FromLong(val);
|
ret = PyInt_FromLong(val);
|
||||||
return (ret);
|
return (ret);
|
||||||
}
|
}
|
||||||
@ -44,10 +36,6 @@ PyObject *
|
|||||||
libvirt_ulongWrap(unsigned long val)
|
libvirt_ulongWrap(unsigned long val)
|
||||||
{
|
{
|
||||||
PyObject *ret;
|
PyObject *ret;
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
printf("libvirt_ulongWrap: val = %lu\n", val);
|
|
||||||
#endif
|
|
||||||
ret = PyLong_FromLong(val);
|
ret = PyLong_FromLong(val);
|
||||||
return (ret);
|
return (ret);
|
||||||
}
|
}
|
||||||
@ -56,10 +44,6 @@ PyObject *
|
|||||||
libvirt_longlongWrap(long long val)
|
libvirt_longlongWrap(long long val)
|
||||||
{
|
{
|
||||||
PyObject *ret;
|
PyObject *ret;
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
printf("libvirt_longWrap: val = %ld\n", val);
|
|
||||||
#endif
|
|
||||||
ret = PyLong_FromUnsignedLongLong((unsigned long long) val);
|
ret = PyLong_FromUnsignedLongLong((unsigned long long) val);
|
||||||
return (ret);
|
return (ret);
|
||||||
}
|
}
|
||||||
@ -73,9 +57,6 @@ libvirt_charPtrWrap(char *str)
|
|||||||
Py_INCREF(Py_None);
|
Py_INCREF(Py_None);
|
||||||
return (Py_None);
|
return (Py_None);
|
||||||
}
|
}
|
||||||
#ifdef DEBUG
|
|
||||||
printf("libvirt_xmlcharPtrWrap: str = %s\n", str);
|
|
||||||
#endif
|
|
||||||
ret = PyString_FromString(str);
|
ret = PyString_FromString(str);
|
||||||
free(str);
|
free(str);
|
||||||
return (ret);
|
return (ret);
|
||||||
@ -90,9 +71,6 @@ libvirt_constcharPtrWrap(const char *str)
|
|||||||
Py_INCREF(Py_None);
|
Py_INCREF(Py_None);
|
||||||
return (Py_None);
|
return (Py_None);
|
||||||
}
|
}
|
||||||
#ifdef DEBUG
|
|
||||||
printf("libvirt_xmlcharPtrWrap: str = %s\n", str);
|
|
||||||
#endif
|
|
||||||
ret = PyString_FromString(str);
|
ret = PyString_FromString(str);
|
||||||
return (ret);
|
return (ret);
|
||||||
}
|
}
|
||||||
@ -106,9 +84,6 @@ libvirt_charPtrConstWrap(const char *str)
|
|||||||
Py_INCREF(Py_None);
|
Py_INCREF(Py_None);
|
||||||
return (Py_None);
|
return (Py_None);
|
||||||
}
|
}
|
||||||
#ifdef DEBUG
|
|
||||||
printf("libvirt_xmlcharPtrWrap: str = %s\n", str);
|
|
||||||
#endif
|
|
||||||
ret = PyString_FromString(str);
|
ret = PyString_FromString(str);
|
||||||
return (ret);
|
return (ret);
|
||||||
}
|
}
|
||||||
@ -118,9 +93,6 @@ libvirt_virDomainPtrWrap(virDomainPtr node)
|
|||||||
{
|
{
|
||||||
PyObject *ret;
|
PyObject *ret;
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
printf("libvirt_virDomainPtrWrap: node = %p\n", node);
|
|
||||||
#endif
|
|
||||||
if (node == NULL) {
|
if (node == NULL) {
|
||||||
Py_INCREF(Py_None);
|
Py_INCREF(Py_None);
|
||||||
return (Py_None);
|
return (Py_None);
|
||||||
@ -136,9 +108,6 @@ libvirt_virNetworkPtrWrap(virNetworkPtr node)
|
|||||||
{
|
{
|
||||||
PyObject *ret;
|
PyObject *ret;
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
printf("libvirt_virNetworkPtrWrap: node = %p\n", node);
|
|
||||||
#endif
|
|
||||||
if (node == NULL) {
|
if (node == NULL) {
|
||||||
Py_INCREF(Py_None);
|
Py_INCREF(Py_None);
|
||||||
return (Py_None);
|
return (Py_None);
|
||||||
@ -154,9 +123,6 @@ libvirt_virStoragePoolPtrWrap(virStoragePoolPtr node)
|
|||||||
{
|
{
|
||||||
PyObject *ret;
|
PyObject *ret;
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
printf("libvirt_virStoragePoolPtrWrap: node = %p\n", node);
|
|
||||||
#endif
|
|
||||||
if (node == NULL) {
|
if (node == NULL) {
|
||||||
Py_INCREF(Py_None);
|
Py_INCREF(Py_None);
|
||||||
return (Py_None);
|
return (Py_None);
|
||||||
@ -172,9 +138,6 @@ libvirt_virStorageVolPtrWrap(virStorageVolPtr node)
|
|||||||
{
|
{
|
||||||
PyObject *ret;
|
PyObject *ret;
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
printf("libvirt_virStorageVolPtrWrap: node = %p\n", node);
|
|
||||||
#endif
|
|
||||||
if (node == NULL) {
|
if (node == NULL) {
|
||||||
Py_INCREF(Py_None);
|
Py_INCREF(Py_None);
|
||||||
return (Py_None);
|
return (Py_None);
|
||||||
@ -190,9 +153,6 @@ libvirt_virConnectPtrWrap(virConnectPtr node)
|
|||||||
{
|
{
|
||||||
PyObject *ret;
|
PyObject *ret;
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
printf("libvirt_virConnectPtrWrap: node = %p\n", node);
|
|
||||||
#endif
|
|
||||||
if (node == NULL) {
|
if (node == NULL) {
|
||||||
Py_INCREF(Py_None);
|
Py_INCREF(Py_None);
|
||||||
return (Py_None);
|
return (Py_None);
|
||||||
|
Loading…
Reference in New Issue
Block a user