commit | 9171a8b4cea3e7b30e4f2c0a989d7f7b8ffabe73 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Sun Aug 14 10:52:18 2016 +0300 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Sun Aug 14 10:52:18 2016 +0300 |
tree | 5cc9c9243ba4ef93902fafdc624e56eab3b15842 | |
parent | b6f78c2755489dfcbe4898072ef0cd7dca11ff3d [diff] [blame] |
Issue #27574: Decreased an overhead of parsing keyword arguments in functions implemented with using Argument Clinic.
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index dc85551..004feae 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c
@@ -674,6 +674,7 @@ PySlice_Fini(); _PyGC_Fini(); _PyRandom_Fini(); + _PyArg_Fini(); /* Cleanup Unicode implementation */ _PyUnicode_Fini();