Commit 4364d850 authored by Victor Stinner's avatar Victor Stinner

getargs.c: remove last reference to "t#" format

"t#" format was removed from convertitem() (convertsimple) but not skipitem().
parent 9a25f265
...@@ -1768,7 +1768,6 @@ skipitem(const char **p_format, va_list *p_va, int flags) ...@@ -1768,7 +1768,6 @@ skipitem(const char **p_format, va_list *p_va, int flags)
case 'z': /* string or None */ case 'z': /* string or None */
case 'y': /* bytes */ case 'y': /* bytes */
case 'u': /* unicode string */ case 'u': /* unicode string */
case 't': /* buffer, read-only */
case 'w': /* buffer, read-write */ case 'w': /* buffer, read-write */
{ {
(void) va_arg(*p_va, char **); (void) va_arg(*p_va, char **);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment