Skip to content

Commit 189db88

Browse files
committed
Struct
1 parent cb21e6a commit 189db88

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -880,14 +880,8 @@ Struct
880880
```python
881881
>>> pack('hhl', 1, 2, 3)
882882
b'\x00\x01\x00\x02\x00\x00\x00\x03'
883-
```
884-
885-
```python
886883
>>> unpack('hhl', b'\x00\x01\x00\x02\x00\x00\x00\x03')
887884
(1, 2, 3)
888-
```
889-
890-
```python
891885
>>> calcsize('hhl')
892886
8
893887
```

0 commit comments

Comments
 (0)