]> granicus.if.org Git - python/commitdiff
getargs.c: remove last reference to "t#" format
authorVictor Stinner <victor.stinner@haypocalc.com>
Sun, 13 Jun 2010 20:31:26 +0000 (20:31 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Sun, 13 Jun 2010 20:31:26 +0000 (20:31 +0000)
"t#" format was removed from convertitem() (convertsimple) but not skipitem().

Python/getargs.c

index d4d8d8417b95552322fecde285fcd6edb29ebce4..20f4814e8b88b1eaae3fa882c00046cb650f302f 100644 (file)
@@ -1768,7 +1768,6 @@ skipitem(const char **p_format, va_list *p_va, int flags)
     case 'z': /* string or None */
     case 'y': /* bytes */
     case 'u': /* unicode string */
-    case 't': /* buffer, read-only */
     case 'w': /* buffer, read-write */
         {
             (void) va_arg(*p_va, char **);