diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-10-22 21:59:23 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-10-22 21:59:23 (GMT) |
commit | 185f42d917f2b66f366ea59260bd0543bb9849c1 (patch) | |
tree | 6c29156603936fee6ecc2ddd3c0e514f085c5f15 /Mac/Demo | |
parent | 339ecc61f81703613d8b5536b35de3dcf745a9ad (diff) | |
download | cpython-185f42d917f2b66f366ea59260bd0543bb9849c1.zip cpython-185f42d917f2b66f366ea59260bd0543bb9849c1.tar.gz cpython-185f42d917f2b66f366ea59260bd0543bb9849c1.tar.bz2 |
struct.pack has become picky about h (short) and H (unsigned short).
Diffstat (limited to 'Mac/Demo')
-rw-r--r-- | Mac/Demo/imgbrowse/mac_image.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Demo/imgbrowse/mac_image.py b/Mac/Demo/imgbrowse/mac_image.py index c4b034e..4e3881f 100644 --- a/Mac/Demo/imgbrowse/mac_image.py +++ b/Mac/Demo/imgbrowse/mac_image.py @@ -13,7 +13,7 @@ def mkpixmap(w, h, fmt, data): """kludge a pixmap together""" fmtinfo = _fmt_to_mac[fmt] - rv = struct.pack("lhhhhhhhlllhhhhlll", + rv = struct.pack("lHhhhhhhlllhhhhlll", id(data)+MacOS.string_id_to_buffer, # HACK HACK!! w*2 + 0x8000, 0, 0, h, w, |