summaryrefslogtreecommitdiff
path: root/Modules/termios.c
diff options
context:
space:
mode:
authordoko <doko@ubuntu.com>2017-02-01 13:02:16 +0100
committerdoko <doko@ubuntu.com>2017-02-01 13:02:16 +0100
commit2e835c97b60f5f554ea4742abc1c0f801567f1b9 (patch)
treee57b9697de6321a39541c2e947940e275ca844d3 /Modules/termios.c
parentba5a055a00d91a449a23ae14dd468e9b769a6b74 (diff)
parent75a56cd1847142d9c893b6df5fb674f54b34d9ed (diff)
downloadcpython-2e835c97b60f5f554ea4742abc1c0f801567f1b9.tar.gz
Merge 3.6
Diffstat (limited to 'Modules/termios.c')
-rw-r--r--Modules/termios.c15
1 files changed, 5 insertions, 10 deletions
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[] =