diff options
author | Armin Rigo <arigo@tunes.org> | 2004-09-27 19:27:51 (GMT) |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2004-09-27 19:27:51 (GMT) |
commit | 9f904398179bcbab4bf21b2500aa14aec01fbdb3 (patch) | |
tree | 6b4969e3c280dbc2313ccc35458fd012e525c18d /Lib/test/test_struct.py | |
parent | b562bc672bff106f1cbf2aad7770b654bfe374ec (diff) | |
download | cpython-9f904398179bcbab4bf21b2500aa14aec01fbdb3.zip cpython-9f904398179bcbab4bf21b2500aa14aec01fbdb3.tar.gz cpython-9f904398179bcbab4bf21b2500aa14aec01fbdb3.tar.bz2 |
Patch #1011240: SystemError generated by struct.pack('P', 'foo').
Diffstat (limited to 'Lib/test/test_struct.py')
-rw-r--r-- | Lib/test/test_struct.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_struct.py b/Lib/test/test_struct.py index 0641d9b..9332466 100644 --- a/Lib/test/test_struct.py +++ b/Lib/test/test_struct.py @@ -54,6 +54,7 @@ if sz * 3 != sz3: simple_err(struct.pack, 'iii', 3) simple_err(struct.pack, 'i', 3, 3, 3) simple_err(struct.pack, 'i', 'foo') +simple_err(struct.pack, 'P', 'foo') simple_err(struct.unpack, 'd', 'flap') s = struct.pack('ii', 1, 2) simple_err(struct.unpack, 'iii', s) |