From bfeec6d871e3db2e0ddfdef01387913bc19cadd4 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Mon, 23 Jan 2017 09:47:21 +0200 Subject: Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever possible. Patch is writen with Coccinelle. --- Modules/termios.c | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'Modules/termios.c') diff --git a/Modules/termios.c b/Modules/termios.c index b78d33e688..6ed4395ae4 100644 --- a/Modules/termios.c +++ b/Modules/termios.c @@ -194,8 +194,7 @@ termios_tcsetattr(PyObject *self, PyObject *args) if (tcsetattr(fd, when, &mode) == -1) return PyErr_SetFromErrno(TermiosError); - Py_INCREF(Py_None); - return Py_None; + Py_RETURN_NONE; } PyDoc_STRVAR(termios_tcsendbreak__doc__, @@ -216,8 +215,7 @@ termios_tcsendbreak(PyObject *self, PyObject *args) if (tcsendbreak(fd, duration) == -1) return PyErr_SetFromErrno(TermiosError); - Py_INCREF(Py_None); - return Py_None; + Py_RETURN_NONE; } PyDoc_STRVAR(termios_tcdrain__doc__, @@ -236,8 +234,7 @@ termios_tcdrain(PyObject *self, PyObject *args) if (tcdrain(fd) == -1) return PyErr_SetFromErrno(TermiosError); - Py_INCREF(Py_None); - return Py_None; + Py_RETURN_NONE; } PyDoc_STRVAR(termios_tcflush__doc__, @@ -259,8 +256,7 @@ termios_tcflush(PyObject *self, PyObject *args) if (tcflush(fd, queue) == -1) return PyErr_SetFromErrno(TermiosError); - Py_INCREF(Py_None); - return Py_None; + Py_RETURN_NONE; } PyDoc_STRVAR(termios_tcflow__doc__, @@ -282,8 +278,7 @@ termios_tcflow(PyObject *self, PyObject *args) if (tcflow(fd, action) == -1) return PyErr_SetFromErrno(TermiosError); - Py_INCREF(Py_None); - return Py_None; + Py_RETURN_NONE; } static PyMethodDef termios_methods[] = -- cgit v1.2.1