omextra 0.0.0.dev503__py3-none-any.whl → 0.0.0.dev504__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.
- omextra/text/abnf/_dataclasses.py +8 -8
- {omextra-0.0.0.dev503.dist-info → omextra-0.0.0.dev504.dist-info}/METADATA +2 -2
- {omextra-0.0.0.dev503.dist-info → omextra-0.0.0.dev504.dist-info}/RECORD +7 -7
- {omextra-0.0.0.dev503.dist-info → omextra-0.0.0.dev504.dist-info}/WHEEL +0 -0
- {omextra-0.0.0.dev503.dist-info → omextra-0.0.0.dev504.dist-info}/entry_points.txt +0 -0
- {omextra-0.0.0.dev503.dist-info → omextra-0.0.0.dev504.dist-info}/licenses/LICENSE +0 -0
- {omextra-0.0.0.dev503.dist-info → omextra-0.0.0.dev504.dist-info}/top_level.txt +0 -0
|
@@ -95,7 +95,7 @@ def _process_dataclass__30a5dd74853303d917aae5f67d4e7189615d1440():
|
|
|
95
95
|
def __setattr__(self, name, value):
|
|
96
96
|
if (
|
|
97
97
|
type(self) is __dataclass__cls
|
|
98
|
-
|
|
98
|
+
or name in __dataclass___setattr_frozen_fields
|
|
99
99
|
):
|
|
100
100
|
raise __dataclass__FrozenInstanceError(f"cannot assign to field {name!r}")
|
|
101
101
|
super(__dataclass__cls, self).__setattr__(name, value)
|
|
@@ -112,7 +112,7 @@ def _process_dataclass__30a5dd74853303d917aae5f67d4e7189615d1440():
|
|
|
112
112
|
def __delattr__(self, name):
|
|
113
113
|
if (
|
|
114
114
|
type(self) is __dataclass__cls
|
|
115
|
-
|
|
115
|
+
or name in __dataclass___delattr_frozen_fields
|
|
116
116
|
):
|
|
117
117
|
raise __dataclass__FrozenInstanceError(f"cannot delete field {name!r}")
|
|
118
118
|
super(__dataclass__cls, self).__delattr__(name)
|
|
@@ -236,7 +236,7 @@ def _process_dataclass__9104a51696bc4129d13d616118c0f732322e677c():
|
|
|
236
236
|
def __setattr__(self, name, value):
|
|
237
237
|
if (
|
|
238
238
|
type(self) is __dataclass__cls
|
|
239
|
-
|
|
239
|
+
or name in __dataclass___setattr_frozen_fields
|
|
240
240
|
):
|
|
241
241
|
raise __dataclass__FrozenInstanceError(f"cannot assign to field {name!r}")
|
|
242
242
|
super(__dataclass__cls, self).__setattr__(name, value)
|
|
@@ -254,7 +254,7 @@ def _process_dataclass__9104a51696bc4129d13d616118c0f732322e677c():
|
|
|
254
254
|
def __delattr__(self, name):
|
|
255
255
|
if (
|
|
256
256
|
type(self) is __dataclass__cls
|
|
257
|
-
|
|
257
|
+
or name in __dataclass___delattr_frozen_fields
|
|
258
258
|
):
|
|
259
259
|
raise __dataclass__FrozenInstanceError(f"cannot delete field {name!r}")
|
|
260
260
|
super(__dataclass__cls, self).__delattr__(name)
|
|
@@ -386,7 +386,7 @@ def _process_dataclass__3dce49e08774c707abbc7a6513e35ccdc43001c9():
|
|
|
386
386
|
def __setattr__(self, name, value):
|
|
387
387
|
if (
|
|
388
388
|
type(self) is __dataclass__cls
|
|
389
|
-
|
|
389
|
+
or name in __dataclass___setattr_frozen_fields
|
|
390
390
|
):
|
|
391
391
|
raise __dataclass__FrozenInstanceError(f"cannot assign to field {name!r}")
|
|
392
392
|
super(__dataclass__cls, self).__setattr__(name, value)
|
|
@@ -404,7 +404,7 @@ def _process_dataclass__3dce49e08774c707abbc7a6513e35ccdc43001c9():
|
|
|
404
404
|
def __delattr__(self, name):
|
|
405
405
|
if (
|
|
406
406
|
type(self) is __dataclass__cls
|
|
407
|
-
|
|
407
|
+
or name in __dataclass___delattr_frozen_fields
|
|
408
408
|
):
|
|
409
409
|
raise __dataclass__FrozenInstanceError(f"cannot delete field {name!r}")
|
|
410
410
|
super(__dataclass__cls, self).__delattr__(name)
|
|
@@ -620,7 +620,7 @@ def _process_dataclass__f7dc3147180d5d4dc248e9c0d94aa0f1e503c4c7():
|
|
|
620
620
|
def __setattr__(self, name, value):
|
|
621
621
|
if (
|
|
622
622
|
type(self) is __dataclass__cls
|
|
623
|
-
|
|
623
|
+
or name in __dataclass___setattr_frozen_fields
|
|
624
624
|
):
|
|
625
625
|
raise __dataclass__FrozenInstanceError(f"cannot assign to field {name!r}")
|
|
626
626
|
super(__dataclass__cls, self).__setattr__(name, value)
|
|
@@ -637,7 +637,7 @@ def _process_dataclass__f7dc3147180d5d4dc248e9c0d94aa0f1e503c4c7():
|
|
|
637
637
|
def __delattr__(self, name):
|
|
638
638
|
if (
|
|
639
639
|
type(self) is __dataclass__cls
|
|
640
|
-
|
|
640
|
+
or name in __dataclass___delattr_frozen_fields
|
|
641
641
|
):
|
|
642
642
|
raise __dataclass__FrozenInstanceError(f"cannot delete field {name!r}")
|
|
643
643
|
super(__dataclass__cls, self).__delattr__(name)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: omextra
|
|
3
|
-
Version: 0.0.0.
|
|
3
|
+
Version: 0.0.0.dev504
|
|
4
4
|
Summary: omextra
|
|
5
5
|
Author: wrmsr
|
|
6
6
|
License-Expression: BSD-3-Clause
|
|
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
14
14
|
Requires-Python: >=3.13
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
License-File: LICENSE
|
|
17
|
-
Requires-Dist: omlish==0.0.0.
|
|
17
|
+
Requires-Dist: omlish==0.0.0.dev504
|
|
18
18
|
Dynamic: license-file
|
|
19
19
|
|
|
20
20
|
# Overview
|
|
@@ -66,7 +66,7 @@ omextra/sql/parsing/_antlr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
|
66
66
|
omextra/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
67
|
omextra/text/abnf/LICENSE,sha256=UJzrhSePw9TVm0VfkVmx9NRHkPS1n6jx2UgajTb14ts,1054
|
|
68
68
|
omextra/text/abnf/__init__.py,sha256=qCV4I7sMWw2k3B4LnHrURwic2m1ewYdaOteu2n2lx0E,2662
|
|
69
|
-
omextra/text/abnf/_dataclasses.py,sha256=
|
|
69
|
+
omextra/text/abnf/_dataclasses.py,sha256=i86K2zjwWr-s6vOKeVyUmaLdIfP3FsXfo-EU3fIpaDo,29537
|
|
70
70
|
omextra/text/abnf/base.py,sha256=GaNDZxC7rFkbQDTLVFwprtbk_288p7F40zgGkeLiwzY,969
|
|
71
71
|
omextra/text/abnf/core.py,sha256=CO62fK2Ez7XqVkESp_yNfX4iDY8tgph5b9fgmCMam0I,2728
|
|
72
72
|
omextra/text/abnf/errors.py,sha256=uj1oQvRVRlWkMG8mpmcRUg25kICeIJx5EWAVij3pmXc,142
|
|
@@ -155,9 +155,9 @@ omextra/text/antlr/cli/__main__.py,sha256=ckYkj0drxabBVwWYewH2SS36TTeAxllZtS4xEl
|
|
|
155
155
|
omextra/text/antlr/cli/cli.py,sha256=LW8pJNmySBOV3g8QxquPjUgxFv7YblzEyi555hHH3_M,1234
|
|
156
156
|
omextra/text/antlr/cli/consts.py,sha256=HUYJP9j4RfeuuQv6HFd2oFMS0piWJ9Sq1tbeAs4OlBc,290
|
|
157
157
|
omextra/text/antlr/cli/gen.py,sha256=HYleVptrpynwcl6GspX6O9_oMRSxwdYAQGuUFfDYse8,5236
|
|
158
|
-
omextra-0.0.0.
|
|
159
|
-
omextra-0.0.0.
|
|
160
|
-
omextra-0.0.0.
|
|
161
|
-
omextra-0.0.0.
|
|
162
|
-
omextra-0.0.0.
|
|
163
|
-
omextra-0.0.0.
|
|
158
|
+
omextra-0.0.0.dev504.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
|
159
|
+
omextra-0.0.0.dev504.dist-info/METADATA,sha256=lYkVZgTdzdeswYfZYcv9P9SWlzdKWRP5SR_K9fIPU7I,1409
|
|
160
|
+
omextra-0.0.0.dev504.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
161
|
+
omextra-0.0.0.dev504.dist-info/entry_points.txt,sha256=-MFAMks5HgZ60Ore0Wl5lKVKk8z4kf1Ls3WY9E_OlCU,37
|
|
162
|
+
omextra-0.0.0.dev504.dist-info/top_level.txt,sha256=o1nCNRejLMcayDngLuWMWwaeOucz33BXbpuoVvvzjPc,8
|
|
163
|
+
omextra-0.0.0.dev504.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|