From 1b5fa6b7c96c945800cead447d7ab1f5e87d151d Mon Sep 17 00:00:00 2001 From: Stefan Krah Date: Sat, 7 Jan 2017 23:20:27 +0100 Subject: Revert (unauthorized) parts of b9eb35435178 which are not in a speed-sensitive path and cause maintenance issues (3.6 <-> 3.7, private test suite). --- Modules/_decimal/_decimal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Modules/_decimal/_decimal.c') diff --git a/Modules/_decimal/_decimal.c b/Modules/_decimal/_decimal.c index feaef2e876..7dd1eab655 100644 --- a/Modules/_decimal/_decimal.c +++ b/Modules/_decimal/_decimal.c @@ -5716,7 +5716,7 @@ PyInit__decimal(void) /* DecimalTuple */ ASSIGN_PTR(collections, PyImport_ImportModule("collections")); ASSIGN_PTR(DecimalTuple, (PyTypeObject *)PyObject_CallMethod(collections, - "namedtuple", "ss", "DecimalTuple", + "namedtuple", "(ss)", "DecimalTuple", "sign digits exponent")); ASSIGN_PTR(obj, PyUnicode_FromString("decimal")); -- cgit v1.2.1