Commit edb693988a6f98d667919cfff3580799918144e4
1 parent
3162c84e
Exists in
master
Removing some debug messages.
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
src/terminal/attributes.cc
| @@ -38,7 +38,7 @@ | @@ -38,7 +38,7 @@ | ||
| 38 | 38 | ||
| 39 | PyObject * py3270_session_getter(PyObject *self, void *name) { | 39 | PyObject * py3270_session_getter(PyObject *self, void *name) { |
| 40 | 40 | ||
| 41 | - debug("%s(%s)",__FUNCTION__,(const char *) name); | 41 | +// debug("%s(%s)",__FUNCTION__,(const char *) name); |
| 42 | 42 | ||
| 43 | return py3270_session_call(self, [name](TN3270::Host &host){ | 43 | return py3270_session_call(self, [name](TN3270::Host &host){ |
| 44 | 44 |
src/terminal/init.cc
| @@ -61,7 +61,7 @@ void py3270_session_type_init(PyTypeObject *type) { | @@ -61,7 +61,7 @@ void py3270_session_type_init(PyTypeObject *type) { | ||
| 61 | size_t ix = 0; | 61 | size_t ix = 0; |
| 62 | for(auto attribute : attributes) { | 62 | for(auto attribute : attributes) { |
| 63 | 63 | ||
| 64 | - debug("Creating attribute %s",attribute->name); | 64 | +// debug("Creating attribute %s",attribute->name); |
| 65 | 65 | ||
| 66 | type->tp_getset[ix].name = (char *) attribute->name; | 66 | type->tp_getset[ix].name = (char *) attribute->name; |
| 67 | type->tp_getset[ix].doc = (char *) (attribute->description ? attribute->description : attribute->summary); | 67 | type->tp_getset[ix].doc = (char *) (attribute->description ? attribute->description : attribute->summary); |