From ba04f79c445f59252f29af03317cdc0642bd2393 Mon Sep 17 00:00:00 2001 From: igo95862 Date: Mon, 30 Nov 2020 22:21:20 +0300 Subject: [PATCH] python: Removed unneccesary comments --- python/notcurses/_notcurses.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/notcurses/_notcurses.c b/python/notcurses/_notcurses.c index 387d98777..95c859815 100644 --- a/python/notcurses/_notcurses.c +++ b/python/notcurses/_notcurses.c @@ -143,7 +143,6 @@ static PyTypeObject NcInputType = { .tp_new = PyType_GenericNew, .tp_members = NcInput_members, .tp_methods = NcInput_methods, - //.tp_alloc = PyType_GenericAlloc, }; // Functions @@ -565,7 +564,6 @@ _notcurses_context_get_std_plane(PyObject *self, PyObject *args) } struct ncplane *std_plane = notcurses_stdplane(notcurses_context_ref->notcurses_context_ptr); NcPlaneObject *ncplane_ref = PyObject_NEW(NcPlaneObject, &NcPlaneType); - //PyObject_INIT(&ncplane_ref, &NcPlaneType); if (ncplane_ref != NULL && std_plane != NULL) { @@ -997,4 +995,4 @@ PyInit__notcurses(void) } return py_module; -} \ No newline at end of file +}