diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-02 01:03:11 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-02 01:03:11 (GMT) |
commit | f3fd733f928752c9e35f8f5141a54cd21c0993b5 (patch) | |
tree | e5ed83eca223ac5ee8a0e836dc8ee8206f89f688 /Python/getargs.c | |
parent | 6f58b6b50445be3cbebf592680bab928c4311a89 (diff) | |
download | cpython-f3fd733f928752c9e35f8f5141a54cd21c0993b5.zip cpython-f3fd733f928752c9e35f8f5141a54cd21c0993b5.tar.gz cpython-f3fd733f928752c9e35f8f5141a54cd21c0993b5.tar.bz2 |
Remove useless argument of _PyUnicode_AsDefaultEncodedString()
Diffstat (limited to 'Python/getargs.c')
-rw-r--r-- | Python/getargs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index 17d5993..e1cef0c 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -551,7 +551,7 @@ convertitem(PyObject *arg, const char **p_format, va_list *p_va, int flags, #define UNICODE_DEFAULT_ENCODING(arg) \ - _PyUnicode_AsDefaultEncodedString(arg, NULL) + _PyUnicode_AsDefaultEncodedString(arg) /* Format an error message generated by convertsimple(). */ |