]> granicus.if.org Git - python/commitdiff
removed unused get_short() function
authorJust van Rossum <just@letterror.com>
Tue, 31 Dec 2002 15:47:42 +0000 (15:47 +0000)
committerJust van Rossum <just@letterror.com>
Tue, 31 Dec 2002 15:47:42 +0000 (15:47 +0000)
Modules/zipimport.c

index 11b5dd30598acd5f35c398984d5f4a63191a402f..f3f5245752c4e282ac436672fc10b887a5a7c3fe 100644 (file)
@@ -602,20 +602,6 @@ static PyTypeObject ZipImporter_Type = {
 
 /* implementation */
 
-/* Given a buffer, return the short that is represented by the first
-   2 bytes, encoded as little endian. This partially reimplements
-   marshal.c:r_short(). */
-static int
-get_short(unsigned char *buf)
-{
-       short x;
-       x = buf[0];
-       x |= buf[1] << 8;
-       /* Sign-extension, in case short greater than 16 bits */
-       x |= -(x & 0x8000);
-       return x;
-}
-
 /* Given a buffer, return the long that is represented by the first
    4 bytes, encoded as little endian. This partially reimplements
    marshal.c:r_long() */