summaryrefslogtreecommitdiff
path: root/Modules
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2017-01-09 13:53:32 +0100
committerStefan Krah <skrah@bytereef.org>2017-01-09 13:53:32 +0100
commit26ab3855a9f2b9624c91d49e6f4e92ce33699b59 (patch)
tree0cc291a62f3389fea82ca08d04f4c6d5bf22505b /Modules
parent40cdba22e96b1706fb4cfa13ffef2b684e5b13a1 (diff)
downloadcpython-26ab3855a9f2b9624c91d49e6f4e92ce33699b59.tar.gz
While a speedup of 1% is measurable, contexts aren't created that often,
so let's defer this until 3.7, 3.8, ... all have this new function.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_decimal/_decimal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/_decimal/_decimal.c b/Modules/_decimal/_decimal.c
index 88ca87c546..fcc1f151cf 100644
--- a/Modules/_decimal/_decimal.c
+++ b/Modules/_decimal/_decimal.c
@@ -1194,13 +1194,13 @@ context_new(PyTypeObject *type, PyObject *args UNUSED, PyObject *kwds UNUSED)
return NULL;
}
- self->traps = _PyObject_CallNoArg((PyObject *)PyDecSignalDict_Type);
+ self->traps = PyObject_CallObject((PyObject *)PyDecSignalDict_Type, NULL);
if (self->traps == NULL) {
self->flags = NULL;
Py_DECREF(self);
return NULL;
}
- self->flags = _PyObject_CallNoArg((PyObject *)PyDecSignalDict_Type);
+ self->flags = PyObject_CallObject((PyObject *)PyDecSignalDict_Type, NULL);
if (self->flags == NULL) {
Py_DECREF(self);
return NULL;
@@ -1395,7 +1395,7 @@ ieee_context(PyObject *dummy UNUSED, PyObject *v)
goto error;
}
- context = _PyObject_CallNoArg((PyObject *)&PyDecContext_Type);
+ context = PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL);
if (context == NULL) {
return NULL;
}
@@ -1417,7 +1417,7 @@ context_copy(PyObject *self, PyObject *args UNUSED)
{
PyObject *copy;
- copy = _PyObject_CallNoArg((PyObject *)&PyDecContext_Type);
+ copy = PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL);
if (copy == NULL) {
return NULL;
}