omlish-cext 0.0.0.dev538__tar.gz → 0.0.0.dev540__tar.gz
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.
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/PKG-INFO +6 -2
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/README.md +4 -0
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/omlish_cext.egg-info/PKG-INFO +6 -2
- omlish_cext-0.0.0.dev540/omlish_cext.egg-info/requires.txt +1 -0
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/pyproject.toml +2 -2
- omlish_cext-0.0.0.dev538/omlish_cext.egg-info/requires.txt +0 -1
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/LICENSE +0 -0
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/omlish/_check.cc +0 -0
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/omlish/collections/hamt/_hamt.c +0 -0
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/omlish/dispatch/_dispatch.cc +0 -0
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/omlish/dispatch/_methods.cc +0 -0
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/omlish/lang/_asyncs.cc +0 -0
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/omlish/lang/imports/_capture.cc +0 -0
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/omlish/typedvalues/_collection.cc +0 -0
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/omlish_cext.egg-info/SOURCES.txt +0 -0
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/omlish_cext.egg-info/dependency_links.txt +0 -0
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/omlish_cext.egg-info/top_level.txt +0 -0
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/setup.cfg +0 -0
- {omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: omlish-cext
|
|
3
|
-
Version: 0.0.0.
|
|
3
|
+
Version: 0.0.0.dev540
|
|
4
4
|
Summary: omlish
|
|
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.dev540
|
|
18
18
|
Dynamic: license-file
|
|
19
19
|
|
|
20
20
|
# Overview
|
|
@@ -94,6 +94,10 @@ dependencies of any kind**.
|
|
|
94
94
|
[Json5](https://json5.org/) parser.
|
|
95
95
|
- **[toml](https://github.com/wrmsr/omlish/blob/master/omlish/formats/toml)** - Toml tools, including a
|
|
96
96
|
[lite](#lite-code) version of the stdlib parser (for use in older pythons).
|
|
97
|
+
- **[goyaml](https://github.com/wrmsr/omlish/blob/master/omlish/formats/yaml/goyaml)** - A **manual**, near-direct,
|
|
98
|
+
'lite'-compatible translation of [go-yaml](https://github.com/goccy/go-yaml/).
|
|
99
|
+
|
|
100
|
+
https://github.com/goccy/go-yaml/tree/8dd51ebb7f36f616b85f7b0e54539afa4341f22a
|
|
97
101
|
|
|
98
102
|
- **[http](https://github.com/wrmsr/omlish/blob/master/omlish/http)** - HTTP code, including:
|
|
99
103
|
|
|
@@ -75,6 +75,10 @@ dependencies of any kind**.
|
|
|
75
75
|
[Json5](https://json5.org/) parser.
|
|
76
76
|
- **[toml](https://github.com/wrmsr/omlish/blob/master/omlish/formats/toml)** - Toml tools, including a
|
|
77
77
|
[lite](#lite-code) version of the stdlib parser (for use in older pythons).
|
|
78
|
+
- **[goyaml](https://github.com/wrmsr/omlish/blob/master/omlish/formats/yaml/goyaml)** - A **manual**, near-direct,
|
|
79
|
+
'lite'-compatible translation of [go-yaml](https://github.com/goccy/go-yaml/).
|
|
80
|
+
|
|
81
|
+
https://github.com/goccy/go-yaml/tree/8dd51ebb7f36f616b85f7b0e54539afa4341f22a
|
|
78
82
|
|
|
79
83
|
- **[http](https://github.com/wrmsr/omlish/blob/master/omlish/http)** - HTTP code, including:
|
|
80
84
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: omlish-cext
|
|
3
|
-
Version: 0.0.0.
|
|
3
|
+
Version: 0.0.0.dev540
|
|
4
4
|
Summary: omlish
|
|
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.dev540
|
|
18
18
|
Dynamic: license-file
|
|
19
19
|
|
|
20
20
|
# Overview
|
|
@@ -94,6 +94,10 @@ dependencies of any kind**.
|
|
|
94
94
|
[Json5](https://json5.org/) parser.
|
|
95
95
|
- **[toml](https://github.com/wrmsr/omlish/blob/master/omlish/formats/toml)** - Toml tools, including a
|
|
96
96
|
[lite](#lite-code) version of the stdlib parser (for use in older pythons).
|
|
97
|
+
- **[goyaml](https://github.com/wrmsr/omlish/blob/master/omlish/formats/yaml/goyaml)** - A **manual**, near-direct,
|
|
98
|
+
'lite'-compatible translation of [go-yaml](https://github.com/goccy/go-yaml/).
|
|
99
|
+
|
|
100
|
+
https://github.com/goccy/go-yaml/tree/8dd51ebb7f36f616b85f7b0e54539afa4341f22a
|
|
97
101
|
|
|
98
102
|
- **[http](https://github.com/wrmsr/omlish/blob/master/omlish/http)** - HTTP code, including:
|
|
99
103
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
omlish==0.0.0.dev540
|
|
@@ -13,7 +13,7 @@ urls = {source = 'https://github.com/wrmsr/omlish'}
|
|
|
13
13
|
license = 'BSD-3-Clause'
|
|
14
14
|
readme = 'README.md'
|
|
15
15
|
requires-python = '>=3.13'
|
|
16
|
-
version = '0.0.0.
|
|
16
|
+
version = '0.0.0.dev540'
|
|
17
17
|
classifiers = [
|
|
18
18
|
'Development Status :: 2 - Pre-Alpha',
|
|
19
19
|
'Intended Audience :: Developers',
|
|
@@ -24,7 +24,7 @@ classifiers = [
|
|
|
24
24
|
]
|
|
25
25
|
description = 'omlish'
|
|
26
26
|
dependencies = [
|
|
27
|
-
'omlish == 0.0.0.
|
|
27
|
+
'omlish == 0.0.0.dev540',
|
|
28
28
|
]
|
|
29
29
|
|
|
30
30
|
[tool.setuptools]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
omlish==0.0.0.dev538
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{omlish_cext-0.0.0.dev538 → omlish_cext-0.0.0.dev540}/omlish_cext.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|