dissect.cstruct 4.4.dev2__py3-none-any.whl → 4.4.dev3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -114,13 +114,13 @@ class Enum(BaseType, IntEnum, metaclass=EnumMetaType):
114
114
  Enums can be made using any integer type.
115
115
 
116
116
  Example:
117
- When using the default C-style parser, the following syntax is supported:
117
+ When using the default C-style parser, the following syntax is supported::
118
118
 
119
119
  enum <name> [: <type>] {
120
120
  <values>
121
121
  };
122
122
 
123
- For example, an enum that has A=1, B=5 and C=6 could be written like so:
123
+ For example, an enum that has A=1, B=5 and C=6 could be written like so::
124
124
 
125
125
  enum Test : uint16 {
126
126
  A, B=5, C
@@ -15,13 +15,13 @@ class Flag(BaseType, IntFlag, metaclass=EnumMetaType):
15
15
  Flags can be made using any integer type.
16
16
 
17
17
  Example:
18
- When using the default C-style parser, the following syntax is supported:
18
+ When using the default C-style parser, the following syntax is supported::
19
19
 
20
20
  flag <name> [: <type>] {
21
21
  <values>
22
22
  };
23
23
 
24
- For example, a flag that has A=1, B=4 and C=8 could be written like so:
24
+ For example, a flag that has A=1, B=4 and C=8 could be written like so::
25
25
 
26
26
  flag Test : uint16 {
27
27
  A, B=4, C
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: dissect.cstruct
3
- Version: 4.4.dev2
3
+ Version: 4.4.dev3
4
4
  Summary: A Dissect module implementing a parser for C-like structures: structure parsing in Python made easy
5
5
  Author-email: Dissect Team <dissect@fox-it.com>
6
6
  License: Apache License 2.0
@@ -9,8 +9,8 @@ dissect/cstruct/utils.py,sha256=XI4YA51-fnQFfCOQt8qABQTUFPcYBICnsU8e2A15mIE,1045
9
9
  dissect/cstruct/types/__init__.py,sha256=ihM132o26_QrBeBviiGiSaU_W4ZTUZ3Bn-yZrQuF97M,855
10
10
  dissect/cstruct/types/base.py,sha256=32MKtAILNxLwhpnBkbqfCl3nq-uvGdUnTpGFVpvw0e4,9247
11
11
  dissect/cstruct/types/char.py,sha256=XWBtODCWKYtZYml5MKlvxrnRyH2emiGa_To7RrwJc_Y,2433
12
- dissect/cstruct/types/enum.py,sha256=7qDr3xr7smebp-lXeXYIj0iCuJ_ntZ0bAs3cKN9VIuE,6746
13
- dissect/cstruct/types/flag.py,sha256=EOJVk-5G7aUtD6plg7_Y6yxoAcrAQCNMjxoUePEQukk,2345
12
+ dissect/cstruct/types/enum.py,sha256=L4W9huphAas-LPY5jSM9IXvqFeYR0rKO9N7bAWSzzWA,6748
13
+ dissect/cstruct/types/flag.py,sha256=7xxQjFEDPHSQOxBHgcc75WzPiAxflOquwr7Z7c3erLE,2347
14
14
  dissect/cstruct/types/int.py,sha256=ihV8v6eR1k2Pnc7dAroxQOGhjQ0Um1coiJMAVHYqWn4,1081
15
15
  dissect/cstruct/types/leb128.py,sha256=zXmfOfoReZFkUGxXIUI_RP-ltzHdlkyny6AOlLxl51c,2168
16
16
  dissect/cstruct/types/packed.py,sha256=V0rEpxHJ3GOlUv9rzi94U8GyN6ArxW7CSPhBPk90qSc,1994
@@ -18,9 +18,9 @@ dissect/cstruct/types/pointer.py,sha256=duHAkHiimgvyg4AGSA54OGdIFLV1kCKEluPa7ffT
18
18
  dissect/cstruct/types/structure.py,sha256=gwRbLhFxE5-qWyxU2jOZOY4eAVrdiz7RYiHrj3ffnNA,29543
19
19
  dissect/cstruct/types/void.py,sha256=VL2qJ86rq-oBUnkBprNsPPgPGgHV6UENRJTQ2jw0rxc,669
20
20
  dissect/cstruct/types/wchar.py,sha256=TMW1UbCbBkDTuzIINff1HY12mZ8B6xR2XECqWI5NdVg,2647
21
- dissect.cstruct-4.4.dev2.dist-info/COPYRIGHT,sha256=H-18RXfshdH9AdHwW2eO1Xa-5s6tY5eipHh5c0whDu4,316
22
- dissect.cstruct-4.4.dev2.dist-info/LICENSE,sha256=PhUqiw6jAh2KbBdVRPBq_hfAvfcTBin7nZ3CK7NQbTM,11341
23
- dissect.cstruct-4.4.dev2.dist-info/METADATA,sha256=2YbkvtAtdgD12lCeq-VHu6CCVtazte4NULyi_qZM4Bk,8558
24
- dissect.cstruct-4.4.dev2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
25
- dissect.cstruct-4.4.dev2.dist-info/top_level.txt,sha256=Mn-CQzEYsAbkxrUI0TnplHuXnGVKzxpDw_po_sXpvv4,8
26
- dissect.cstruct-4.4.dev2.dist-info/RECORD,,
21
+ dissect.cstruct-4.4.dev3.dist-info/COPYRIGHT,sha256=H-18RXfshdH9AdHwW2eO1Xa-5s6tY5eipHh5c0whDu4,316
22
+ dissect.cstruct-4.4.dev3.dist-info/LICENSE,sha256=PhUqiw6jAh2KbBdVRPBq_hfAvfcTBin7nZ3CK7NQbTM,11341
23
+ dissect.cstruct-4.4.dev3.dist-info/METADATA,sha256=KSiN3TvE3KD5fXz6KVvt3Okh7UeHQebr2dZL6ygsyMU,8558
24
+ dissect.cstruct-4.4.dev3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
25
+ dissect.cstruct-4.4.dev3.dist-info/top_level.txt,sha256=Mn-CQzEYsAbkxrUI0TnplHuXnGVKzxpDw_po_sXpvv4,8
26
+ dissect.cstruct-4.4.dev3.dist-info/RECORD,,