diff options
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/stringobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 7df894e..cb76d77 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -921,7 +921,7 @@ formatstring(format, args) XDECREF(temp); } /* '%' */ } /* until end */ - if (argidx < arglen) { + if (argidx < arglen && !dict) { err_setstr(TypeError, "not all arguments converted"); goto error; } |