blob: 778507efa309b5ee4e08b79731266a6fdf025687 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
# python-cstruct changelog
## 1.0
2013-08-19
### Added
- initial version
## 1.2
2017-05-18
### Improved
- initialize all values to 0 by default
- new data types
### Added
- who.py example
- a changelog :)
## 1.3
2017-05-21
### Fix
- default value fix
## 1.4
2017-06-02
### Fix
- default value fix
## 1.5
2017-07-22
### Fix
- compatibiliy fix
### 1.6
2017-12-12
### Fix
- fixed size of 64-bit integers, they now have 64 bits, not 32
### 1.7
2018-03-14
### Improved
- add support for // comments
### 1.8
2018-10-30
### Improved
- add *_t types
### Fix
- fix Python 2.5 support in main module
- examples fix
### 1.9
2019-07-09
### Improved
- drop Python < 2.6 support
### Added
- flexible array parsing
- union initial support
### 2.0
2020-04-11
### Improved
- drop Python 2 support
### 2.1
2020-10-09
### Improved
- refactoring
- Python 3.9 support
- Github workfows
### 2.2
2022-08-23
### Fix
- Fix empty MemCStruct size
### Improved
- Python 3.10 support
- pytest
- black code style
### 2.3
2022-09-01
### Fix
- Fix compare with None
|