omdev 0.0.0.dev142__py3-none-any.whl → 0.0.0.dev144__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.
- omdev/amalg/amalg.py +15 -4
- omdev/interp/pyenv.py +1 -0
- omdev/scripts/interp.py +1 -0
- omdev/scripts/pyproject.py +99 -50
- {omdev-0.0.0.dev142.dist-info → omdev-0.0.0.dev144.dist-info}/METADATA +2 -2
- {omdev-0.0.0.dev142.dist-info → omdev-0.0.0.dev144.dist-info}/RECORD +10 -10
- {omdev-0.0.0.dev142.dist-info → omdev-0.0.0.dev144.dist-info}/LICENSE +0 -0
- {omdev-0.0.0.dev142.dist-info → omdev-0.0.0.dev144.dist-info}/WHEEL +0 -0
- {omdev-0.0.0.dev142.dist-info → omdev-0.0.0.dev144.dist-info}/entry_points.txt +0 -0
- {omdev-0.0.0.dev142.dist-info → omdev-0.0.0.dev144.dist-info}/top_level.txt +0 -0
omdev/amalg/amalg.py
CHANGED
|
@@ -366,11 +366,22 @@ def make_src_file(
|
|
|
366
366
|
])
|
|
367
367
|
|
|
368
368
|
elif is_root_level_if_type_checking_block(line):
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
369
|
+
def skip_block():
|
|
370
|
+
nonlocal i
|
|
371
|
+
while True:
|
|
372
|
+
nl = cls[i]
|
|
373
|
+
if nl and nl[0].name != 'INDENT':
|
|
374
|
+
return nl
|
|
375
|
+
i += 1
|
|
376
|
+
|
|
377
|
+
nl = skip_block()
|
|
378
|
+
|
|
379
|
+
if tks.match_toks(nl, [
|
|
380
|
+
('DEDENT', None),
|
|
381
|
+
('NAME', 'else'),
|
|
382
|
+
]):
|
|
373
383
|
i += 1
|
|
384
|
+
skip_block()
|
|
374
385
|
|
|
375
386
|
else:
|
|
376
387
|
ctls.append(line)
|
omdev/interp/pyenv.py
CHANGED
omdev/scripts/interp.py
CHANGED
omdev/scripts/pyproject.py
CHANGED
|
@@ -3084,21 +3084,26 @@ TODO:
|
|
|
3084
3084
|
##
|
|
3085
3085
|
|
|
3086
3086
|
|
|
3087
|
+
@dc.dataclass(frozen=True)
|
|
3088
|
+
class ObjMarshalOptions:
|
|
3089
|
+
raw_bytes: bool = False
|
|
3090
|
+
|
|
3091
|
+
|
|
3087
3092
|
class ObjMarshaler(abc.ABC):
|
|
3088
3093
|
@abc.abstractmethod
|
|
3089
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3094
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3090
3095
|
raise NotImplementedError
|
|
3091
3096
|
|
|
3092
3097
|
@abc.abstractmethod
|
|
3093
|
-
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3098
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3094
3099
|
raise NotImplementedError
|
|
3095
3100
|
|
|
3096
3101
|
|
|
3097
3102
|
class NopObjMarshaler(ObjMarshaler):
|
|
3098
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3103
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3099
3104
|
return o
|
|
3100
3105
|
|
|
3101
|
-
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3106
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3102
3107
|
return o
|
|
3103
3108
|
|
|
3104
3109
|
|
|
@@ -3106,29 +3111,29 @@ class NopObjMarshaler(ObjMarshaler):
|
|
|
3106
3111
|
class ProxyObjMarshaler(ObjMarshaler):
|
|
3107
3112
|
m: ta.Optional[ObjMarshaler] = None
|
|
3108
3113
|
|
|
3109
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3110
|
-
return check_not_none(self.m).marshal(o)
|
|
3114
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3115
|
+
return check_not_none(self.m).marshal(o, opts)
|
|
3111
3116
|
|
|
3112
|
-
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3113
|
-
return check_not_none(self.m).unmarshal(o)
|
|
3117
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3118
|
+
return check_not_none(self.m).unmarshal(o, opts)
|
|
3114
3119
|
|
|
3115
3120
|
|
|
3116
3121
|
@dc.dataclass(frozen=True)
|
|
3117
3122
|
class CastObjMarshaler(ObjMarshaler):
|
|
3118
3123
|
ty: type
|
|
3119
3124
|
|
|
3120
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3125
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3121
3126
|
return o
|
|
3122
3127
|
|
|
3123
|
-
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3128
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3124
3129
|
return self.ty(o)
|
|
3125
3130
|
|
|
3126
3131
|
|
|
3127
3132
|
class DynamicObjMarshaler(ObjMarshaler):
|
|
3128
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3133
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3129
3134
|
return marshal_obj(o)
|
|
3130
3135
|
|
|
3131
|
-
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3136
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3132
3137
|
return o
|
|
3133
3138
|
|
|
3134
3139
|
|
|
@@ -3136,21 +3141,36 @@ class DynamicObjMarshaler(ObjMarshaler):
|
|
|
3136
3141
|
class Base64ObjMarshaler(ObjMarshaler):
|
|
3137
3142
|
ty: type
|
|
3138
3143
|
|
|
3139
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3144
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3140
3145
|
return base64.b64encode(o).decode('ascii')
|
|
3141
3146
|
|
|
3142
|
-
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3147
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3143
3148
|
return self.ty(base64.b64decode(o))
|
|
3144
3149
|
|
|
3145
3150
|
|
|
3151
|
+
@dc.dataclass(frozen=True)
|
|
3152
|
+
class BytesSwitchedObjMarshaler(ObjMarshaler):
|
|
3153
|
+
m: ObjMarshaler
|
|
3154
|
+
|
|
3155
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3156
|
+
if opts.raw_bytes:
|
|
3157
|
+
return o
|
|
3158
|
+
return self.m.marshal(o, opts)
|
|
3159
|
+
|
|
3160
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3161
|
+
if opts.raw_bytes:
|
|
3162
|
+
return o
|
|
3163
|
+
return self.m.unmarshal(o, opts)
|
|
3164
|
+
|
|
3165
|
+
|
|
3146
3166
|
@dc.dataclass(frozen=True)
|
|
3147
3167
|
class EnumObjMarshaler(ObjMarshaler):
|
|
3148
3168
|
ty: type
|
|
3149
3169
|
|
|
3150
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3170
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3151
3171
|
return o.name
|
|
3152
3172
|
|
|
3153
|
-
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3173
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3154
3174
|
return self.ty.__members__[o] # type: ignore
|
|
3155
3175
|
|
|
3156
3176
|
|
|
@@ -3158,15 +3178,15 @@ class EnumObjMarshaler(ObjMarshaler):
|
|
|
3158
3178
|
class OptionalObjMarshaler(ObjMarshaler):
|
|
3159
3179
|
item: ObjMarshaler
|
|
3160
3180
|
|
|
3161
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3181
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3162
3182
|
if o is None:
|
|
3163
3183
|
return None
|
|
3164
|
-
return self.item.marshal(o)
|
|
3184
|
+
return self.item.marshal(o, opts)
|
|
3165
3185
|
|
|
3166
|
-
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3186
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3167
3187
|
if o is None:
|
|
3168
3188
|
return None
|
|
3169
|
-
return self.item.unmarshal(o)
|
|
3189
|
+
return self.item.unmarshal(o, opts)
|
|
3170
3190
|
|
|
3171
3191
|
|
|
3172
3192
|
@dc.dataclass(frozen=True)
|
|
@@ -3175,11 +3195,11 @@ class MappingObjMarshaler(ObjMarshaler):
|
|
|
3175
3195
|
km: ObjMarshaler
|
|
3176
3196
|
vm: ObjMarshaler
|
|
3177
3197
|
|
|
3178
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3179
|
-
return {self.km.marshal(k): self.vm.marshal(v) for k, v in o.items()}
|
|
3198
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3199
|
+
return {self.km.marshal(k, opts): self.vm.marshal(v, opts) for k, v in o.items()}
|
|
3180
3200
|
|
|
3181
|
-
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3182
|
-
return self.ty((self.km.unmarshal(k), self.vm.unmarshal(v)) for k, v in o.items())
|
|
3201
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3202
|
+
return self.ty((self.km.unmarshal(k, opts), self.vm.unmarshal(v, opts)) for k, v in o.items())
|
|
3183
3203
|
|
|
3184
3204
|
|
|
3185
3205
|
@dc.dataclass(frozen=True)
|
|
@@ -3187,11 +3207,11 @@ class IterableObjMarshaler(ObjMarshaler):
|
|
|
3187
3207
|
ty: type
|
|
3188
3208
|
item: ObjMarshaler
|
|
3189
3209
|
|
|
3190
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3191
|
-
return [self.item.marshal(e) for e in o]
|
|
3210
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3211
|
+
return [self.item.marshal(e, opts) for e in o]
|
|
3192
3212
|
|
|
3193
|
-
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3194
|
-
return self.ty(self.item.unmarshal(e) for e in o)
|
|
3213
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3214
|
+
return self.ty(self.item.unmarshal(e, opts) for e in o)
|
|
3195
3215
|
|
|
3196
3216
|
|
|
3197
3217
|
@dc.dataclass(frozen=True)
|
|
@@ -3200,11 +3220,11 @@ class DataclassObjMarshaler(ObjMarshaler):
|
|
|
3200
3220
|
fs: ta.Mapping[str, ObjMarshaler]
|
|
3201
3221
|
nonstrict: bool = False
|
|
3202
3222
|
|
|
3203
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3204
|
-
return {k: m.marshal(getattr(o, k)) for k, m in self.fs.items()}
|
|
3223
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3224
|
+
return {k: m.marshal(getattr(o, k), opts) for k, m in self.fs.items()}
|
|
3205
3225
|
|
|
3206
|
-
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3207
|
-
return self.ty(**{k: self.fs[k].unmarshal(v) for k, v in o.items() if not self.nonstrict or k in self.fs})
|
|
3226
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3227
|
+
return self.ty(**{k: self.fs[k].unmarshal(v, opts) for k, v in o.items() if not self.nonstrict or k in self.fs})
|
|
3208
3228
|
|
|
3209
3229
|
|
|
3210
3230
|
@dc.dataclass(frozen=True)
|
|
@@ -3224,50 +3244,50 @@ class PolymorphicObjMarshaler(ObjMarshaler):
|
|
|
3224
3244
|
{i.tag: i for i in impls},
|
|
3225
3245
|
)
|
|
3226
3246
|
|
|
3227
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3247
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3228
3248
|
impl = self.impls_by_ty[type(o)]
|
|
3229
|
-
return {impl.tag: impl.m.marshal(o)}
|
|
3249
|
+
return {impl.tag: impl.m.marshal(o, opts)}
|
|
3230
3250
|
|
|
3231
|
-
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3251
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3232
3252
|
[(t, v)] = o.items()
|
|
3233
3253
|
impl = self.impls_by_tag[t]
|
|
3234
|
-
return impl.m.unmarshal(v)
|
|
3254
|
+
return impl.m.unmarshal(v, opts)
|
|
3235
3255
|
|
|
3236
3256
|
|
|
3237
3257
|
@dc.dataclass(frozen=True)
|
|
3238
3258
|
class DatetimeObjMarshaler(ObjMarshaler):
|
|
3239
3259
|
ty: type
|
|
3240
3260
|
|
|
3241
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3261
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3242
3262
|
return o.isoformat()
|
|
3243
3263
|
|
|
3244
|
-
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3264
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3245
3265
|
return self.ty.fromisoformat(o) # type: ignore
|
|
3246
3266
|
|
|
3247
3267
|
|
|
3248
3268
|
class DecimalObjMarshaler(ObjMarshaler):
|
|
3249
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3269
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3250
3270
|
return str(check_isinstance(o, decimal.Decimal))
|
|
3251
3271
|
|
|
3252
|
-
def unmarshal(self, v: ta.Any) -> ta.Any:
|
|
3272
|
+
def unmarshal(self, v: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3253
3273
|
return decimal.Decimal(check_isinstance(v, str))
|
|
3254
3274
|
|
|
3255
3275
|
|
|
3256
3276
|
class FractionObjMarshaler(ObjMarshaler):
|
|
3257
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3277
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3258
3278
|
fr = check_isinstance(o, fractions.Fraction)
|
|
3259
3279
|
return [fr.numerator, fr.denominator]
|
|
3260
3280
|
|
|
3261
|
-
def unmarshal(self, v: ta.Any) -> ta.Any:
|
|
3281
|
+
def unmarshal(self, v: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3262
3282
|
num, denom = check_isinstance(v, list)
|
|
3263
3283
|
return fractions.Fraction(num, denom)
|
|
3264
3284
|
|
|
3265
3285
|
|
|
3266
3286
|
class UuidObjMarshaler(ObjMarshaler):
|
|
3267
|
-
def marshal(self, o: ta.Any) -> ta.Any:
|
|
3287
|
+
def marshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3268
3288
|
return str(o)
|
|
3269
3289
|
|
|
3270
|
-
def unmarshal(self, o: ta.Any) -> ta.Any:
|
|
3290
|
+
def unmarshal(self, o: ta.Any, opts: ObjMarshalOptions) -> ta.Any:
|
|
3271
3291
|
return uuid.UUID(o)
|
|
3272
3292
|
|
|
3273
3293
|
|
|
@@ -3277,7 +3297,7 @@ class UuidObjMarshaler(ObjMarshaler):
|
|
|
3277
3297
|
_DEFAULT_OBJ_MARSHALERS: ta.Dict[ta.Any, ObjMarshaler] = {
|
|
3278
3298
|
**{t: NopObjMarshaler() for t in (type(None),)},
|
|
3279
3299
|
**{t: CastObjMarshaler(t) for t in (int, float, str, bool)},
|
|
3280
|
-
**{t: Base64ObjMarshaler(t) for t in (bytes, bytearray)},
|
|
3300
|
+
**{t: BytesSwitchedObjMarshaler(Base64ObjMarshaler(t)) for t in (bytes, bytearray)},
|
|
3281
3301
|
**{t: IterableObjMarshaler(t, DynamicObjMarshaler()) for t in (list, tuple, set, frozenset)},
|
|
3282
3302
|
**{t: MappingObjMarshaler(t, DynamicObjMarshaler(), DynamicObjMarshaler()) for t in (dict,)},
|
|
3283
3303
|
|
|
@@ -3310,12 +3330,16 @@ class ObjMarshalerManager:
|
|
|
3310
3330
|
def __init__(
|
|
3311
3331
|
self,
|
|
3312
3332
|
*,
|
|
3333
|
+
default_options: ObjMarshalOptions = ObjMarshalOptions(),
|
|
3334
|
+
|
|
3313
3335
|
default_obj_marshalers: ta.Dict[ta.Any, ObjMarshaler] = _DEFAULT_OBJ_MARSHALERS, # noqa
|
|
3314
3336
|
generic_mapping_types: ta.Dict[ta.Any, type] = _OBJ_MARSHALER_GENERIC_MAPPING_TYPES, # noqa
|
|
3315
3337
|
generic_iterable_types: ta.Dict[ta.Any, type] = _OBJ_MARSHALER_GENERIC_ITERABLE_TYPES, # noqa
|
|
3316
3338
|
) -> None:
|
|
3317
3339
|
super().__init__()
|
|
3318
3340
|
|
|
3341
|
+
self._default_options = default_options
|
|
3342
|
+
|
|
3319
3343
|
self._obj_marshalers = dict(default_obj_marshalers)
|
|
3320
3344
|
self._generic_mapping_types = generic_mapping_types
|
|
3321
3345
|
self._generic_iterable_types = generic_iterable_types
|
|
@@ -3424,11 +3448,35 @@ class ObjMarshalerManager:
|
|
|
3424
3448
|
|
|
3425
3449
|
#
|
|
3426
3450
|
|
|
3427
|
-
def marshal_obj(
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3451
|
+
def marshal_obj(
|
|
3452
|
+
self,
|
|
3453
|
+
o: ta.Any,
|
|
3454
|
+
ty: ta.Any = None,
|
|
3455
|
+
opts: ta.Optional[ObjMarshalOptions] = None,
|
|
3456
|
+
) -> ta.Any:
|
|
3457
|
+
m = self.get_obj_marshaler(ty if ty is not None else type(o))
|
|
3458
|
+
return m.marshal(o, opts or self._default_options)
|
|
3459
|
+
|
|
3460
|
+
def unmarshal_obj(
|
|
3461
|
+
self,
|
|
3462
|
+
o: ta.Any,
|
|
3463
|
+
ty: ta.Union[ta.Type[T], ta.Any],
|
|
3464
|
+
opts: ta.Optional[ObjMarshalOptions] = None,
|
|
3465
|
+
) -> T:
|
|
3466
|
+
m = self.get_obj_marshaler(ty)
|
|
3467
|
+
return m.unmarshal(o, opts or self._default_options)
|
|
3468
|
+
|
|
3469
|
+
def roundtrip_obj(
|
|
3470
|
+
self,
|
|
3471
|
+
o: ta.Any,
|
|
3472
|
+
ty: ta.Any = None,
|
|
3473
|
+
opts: ta.Optional[ObjMarshalOptions] = None,
|
|
3474
|
+
) -> ta.Any:
|
|
3475
|
+
if ty is None:
|
|
3476
|
+
ty = type(o)
|
|
3477
|
+
m: ta.Any = self.marshal_obj(o, ty, opts)
|
|
3478
|
+
u: ta.Any = self.unmarshal_obj(m, ty, opts)
|
|
3479
|
+
return u
|
|
3432
3480
|
|
|
3433
3481
|
|
|
3434
3482
|
##
|
|
@@ -4653,6 +4701,7 @@ DEFAULT_PYENV_INSTALL_OPTS = PyenvInstallOpts(
|
|
|
4653
4701
|
'-k',
|
|
4654
4702
|
],
|
|
4655
4703
|
conf_opts=[
|
|
4704
|
+
# FIXME: breaks on mac for older py's
|
|
4656
4705
|
'--enable-loadable-sqlite-extensions',
|
|
4657
4706
|
|
|
4658
4707
|
# '--enable-shared',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: omdev
|
|
3
|
-
Version: 0.0.0.
|
|
3
|
+
Version: 0.0.0.dev144
|
|
4
4
|
Summary: omdev
|
|
5
5
|
Author: wrmsr
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -12,7 +12,7 @@ Classifier: Operating System :: OS Independent
|
|
|
12
12
|
Classifier: Operating System :: POSIX
|
|
13
13
|
Requires-Python: >=3.12
|
|
14
14
|
License-File: LICENSE
|
|
15
|
-
Requires-Dist: omlish==0.0.0.
|
|
15
|
+
Requires-Dist: omlish==0.0.0.dev144
|
|
16
16
|
Provides-Extra: all
|
|
17
17
|
Requires-Dist: black~=24.10; extra == "all"
|
|
18
18
|
Requires-Dist: pycparser~=2.22; extra == "all"
|
|
@@ -14,7 +14,7 @@ omdev/tokens.py,sha256=eCppK7BtlgAK_AmfO-Or_B-x85tqmu0HVla8d2gvB3I,1333
|
|
|
14
14
|
omdev/wheelfile.py,sha256=yfupGcGkbFlmzGzKU64k_vmOKpaKnUlDWxeGn2KdekU,10005
|
|
15
15
|
omdev/amalg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
omdev/amalg/__main__.py,sha256=h94M-VqZ3AFBU2a8zOsjeKK7RF6uINhTHl6OiGbVMgw,163
|
|
17
|
-
omdev/amalg/amalg.py,sha256=
|
|
17
|
+
omdev/amalg/amalg.py,sha256=AEhgXmc9y3zfvMpAdJUuTwlhYZ5bCAUrVf1WHsgV5PI,16084
|
|
18
18
|
omdev/antlr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
omdev/antlr/consts.py,sha256=8pR6r0m0P3hAiyiAoJZ-nptd2GYbZ98mxwPL9cpaRuw,279
|
|
20
20
|
omdev/antlr/gen.py,sha256=QnPyVWUrJYqHoOc3XsXA8fJdoiwAj6pyUwdG-DVrIeA,2953
|
|
@@ -74,7 +74,7 @@ omdev/interp/__main__.py,sha256=GMCqeGYltgt5dlJzHxY9gqisa8cRkrPfmZYuZnjg4WI,162
|
|
|
74
74
|
omdev/interp/cli.py,sha256=sh7PZQoLletUViw1Y9OXNr9ekyNZ6YyxYuOQ_n9hyqU,2072
|
|
75
75
|
omdev/interp/inspect.py,sha256=55_il4ehoW6Q468YE57w5CyZxHLNsndkRIH4W80OplM,2848
|
|
76
76
|
omdev/interp/providers.py,sha256=PFEjozW0c33eqg8sno-GHMKbhVUzQF9jrAx-M0uQimk,1787
|
|
77
|
-
omdev/interp/pyenv.py,sha256=
|
|
77
|
+
omdev/interp/pyenv.py,sha256=rHps4saqLxp-udbZp-5RpFxNhZNQc6plqIvaCQpNBHo,13837
|
|
78
78
|
omdev/interp/resolvers.py,sha256=tpzlmqGp1C4QKdA6TfcPmtmaygu7mb6WK2RPSbyNQ6s,3022
|
|
79
79
|
omdev/interp/standalone.py,sha256=XcltiL7ypcfV89C82_3knQ3Kx7aW4wnnxf2056ZXC3A,7731
|
|
80
80
|
omdev/interp/system.py,sha256=bI-JhX4GVJqW7wMxnIa-DGJWnCLmFcIsnl9pc1RGY2g,3513
|
|
@@ -122,8 +122,8 @@ omdev/scripts/bumpversion.py,sha256=Kn7fo73Hs8uJh3Hi3EIyLOlzLPWAC6dwuD_lZ3cIzuY,
|
|
|
122
122
|
omdev/scripts/execrss.py,sha256=mR0G0wERBYtQmVIn63lCIIFb5zkCM6X_XOENDFYDBKc,651
|
|
123
123
|
omdev/scripts/exectime.py,sha256=sFb376GflU6s9gNX-2-we8hgH6w5MuQNS9g6i4SqJIo,610
|
|
124
124
|
omdev/scripts/importtrace.py,sha256=oa7CtcWJVMNDbyIEiRHej6ICfABfErMeo4_haIqe18Q,14041
|
|
125
|
-
omdev/scripts/interp.py,sha256=
|
|
126
|
-
omdev/scripts/pyproject.py,sha256=
|
|
125
|
+
omdev/scripts/interp.py,sha256=Xzki1bTvF2uahDrK65_A-lbN29W67jE4t7v8SY__F44,74287
|
|
126
|
+
omdev/scripts/pyproject.py,sha256=rxjEsErhrVmoOhX8RYZ0i77D13VKaE7uGFveu--bGtk,179110
|
|
127
127
|
omdev/scripts/slowcat.py,sha256=lssv4yrgJHiWfOiHkUut2p8E8Tq32zB-ujXESQxFFHY,2728
|
|
128
128
|
omdev/scripts/tmpexec.py,sha256=WTYcf56Tj2qjYV14AWmV8SfT0u6Y8eIU6cKgQRvEK3c,1442
|
|
129
129
|
omdev/toml/__init__.py,sha256=Y3l4WY4JRi2uLG6kgbGp93fuGfkxkKwZDvhsa0Rwgtk,15
|
|
@@ -152,9 +152,9 @@ omdev/tools/json/rendering.py,sha256=jNShMfCpFR9-Kcn6cUFuOChXHjg71diuTC4x7Ofmz-o
|
|
|
152
152
|
omdev/tools/pawk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
153
|
omdev/tools/pawk/__main__.py,sha256=VCqeRVnqT1RPEoIrqHFSu4PXVMg4YEgF4qCQm90-eRI,66
|
|
154
154
|
omdev/tools/pawk/pawk.py,sha256=Eckymn22GfychCQcQi96BFqRo_LmiJ-EPhC8TTUJdB4,11446
|
|
155
|
-
omdev-0.0.0.
|
|
156
|
-
omdev-0.0.0.
|
|
157
|
-
omdev-0.0.0.
|
|
158
|
-
omdev-0.0.0.
|
|
159
|
-
omdev-0.0.0.
|
|
160
|
-
omdev-0.0.0.
|
|
155
|
+
omdev-0.0.0.dev144.dist-info/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
|
156
|
+
omdev-0.0.0.dev144.dist-info/METADATA,sha256=zSYVvh5IUY6zP4Wn5I2TAlHKzLDdlRGccLePdsDiY0A,1760
|
|
157
|
+
omdev-0.0.0.dev144.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
158
|
+
omdev-0.0.0.dev144.dist-info/entry_points.txt,sha256=dHLXFmq5D9B8qUyhRtFqTGWGxlbx3t5ejedjrnXNYLU,33
|
|
159
|
+
omdev-0.0.0.dev144.dist-info/top_level.txt,sha256=1nr7j30fEWgLYHW3lGR9pkdHkb7knv1U1ES1XRNVQ6k,6
|
|
160
|
+
omdev-0.0.0.dev144.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|