From 189db88cd10cb0e8f8014ec2f5da7a8ddf21af37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sat, 29 Dec 2018 16:41:33 +0100 Subject: [PATCH] Struct --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index 6017ed2..024e2b6 100644 --- a/README.md +++ b/README.md @@ -880,14 +880,8 @@ Struct ```python >>> pack('hhl', 1, 2, 3) b'\x00\x01\x00\x02\x00\x00\x00\x03' -``` - -```python >>> unpack('hhl', b'\x00\x01\x00\x02\x00\x00\x00\x03') (1, 2, 3) -``` - -```python >>> calcsize('hhl') 8 ```