zope.hookable 5.3__cp39-cp39-win_amd64.whl → 6.0__cp39-cp39-win_amd64.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.
Potentially problematic release.
This version of zope.hookable might be problematic. Click here for more details.
- zope/hookable/__init__.py +1 -1
- zope/hookable/_zope_hookable.c +0 -12
- zope/hookable/_zope_hookable.cp39-win_amd64.pyd +0 -0
- zope/hookable/tests/test_hookable.py +7 -7
- {zope.hookable-5.3.dist-info → zope.hookable-6.0.dist-info}/METADATA +210 -198
- zope.hookable-6.0.dist-info/RECORD +13 -0
- {zope.hookable-5.3.dist-info → zope.hookable-6.0.dist-info}/WHEEL +1 -1
- zope.hookable-5.3.dist-info/RECORD +0 -13
- /zope.hookable-5.3-py3.9-nspkg.pth → /zope.hookable-6.0-py3.9-nspkg.pth +0 -0
- {zope.hookable-5.3.dist-info → zope.hookable-6.0.dist-info}/LICENSE.txt +0 -0
- {zope.hookable-5.3.dist-info → zope.hookable-6.0.dist-info}/namespace_packages.txt +0 -0
- {zope.hookable-5.3.dist-info → zope.hookable-6.0.dist-info}/top_level.txt +0 -0
zope/hookable/__init__.py
CHANGED
|
@@ -21,7 +21,7 @@ _PYPY = platform.python_implementation() in ('PyPy', 'Jython')
|
|
|
21
21
|
_PURE_PYTHON = os.environ.get('PURE_PYTHON', _PYPY)
|
|
22
22
|
|
|
23
23
|
|
|
24
|
-
class _py_hookable
|
|
24
|
+
class _py_hookable:
|
|
25
25
|
__slots__ = ('_original', '_implementation')
|
|
26
26
|
|
|
27
27
|
def __init__(self, *args, **kw):
|
zope/hookable/_zope_hookable.c
CHANGED
|
@@ -135,11 +135,7 @@ hookable_getattro(hookable *self, PyObject *name)
|
|
|
135
135
|
const char *name_as_string;
|
|
136
136
|
int maybe_special_name;
|
|
137
137
|
|
|
138
|
-
#if PY_MAJOR_VERSION < 3
|
|
139
|
-
name_as_string = PyString_AsString(name);
|
|
140
|
-
#else
|
|
141
138
|
name_as_string = PyUnicode_AsUTF8(name);
|
|
142
|
-
#endif
|
|
143
139
|
|
|
144
140
|
if (name_as_string == NULL) {
|
|
145
141
|
return NULL;
|
|
@@ -231,7 +227,6 @@ static PyTypeObject hookabletype = {
|
|
|
231
227
|
};
|
|
232
228
|
|
|
233
229
|
|
|
234
|
-
#if PY_MAJOR_VERSION >= 3
|
|
235
230
|
#define MOD_ERROR_VAL NULL
|
|
236
231
|
#define MOD_SUCCESS_VAL(val) val
|
|
237
232
|
#define MOD_INIT(name) PyMODINIT_FUNC PyInit_##name(void)
|
|
@@ -239,13 +234,6 @@ static PyTypeObject hookabletype = {
|
|
|
239
234
|
static struct PyModuleDef moduledef = { \
|
|
240
235
|
PyModuleDef_HEAD_INIT, name, doc, -1, methods, }; \
|
|
241
236
|
ob = PyModule_Create(&moduledef);
|
|
242
|
-
#else
|
|
243
|
-
#define MOD_ERROR_VAL
|
|
244
|
-
#define MOD_SUCCESS_VAL(val)
|
|
245
|
-
#define MOD_INIT(name) void init##name(void)
|
|
246
|
-
#define MOD_DEF(ob, name, doc, methods) \
|
|
247
|
-
ob = Py_InitModule3(name, methods, doc);
|
|
248
|
-
#endif
|
|
249
237
|
|
|
250
238
|
static struct PyMethodDef module_methods[] = {
|
|
251
239
|
{NULL, NULL}
|
|
Binary file
|
|
@@ -28,14 +28,14 @@ def not_called():
|
|
|
28
28
|
raise AssertionError("This should not be called")
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
class PyHookableMixin
|
|
31
|
+
class PyHookableMixin:
|
|
32
32
|
|
|
33
33
|
def _callFUT(self, *args, **kw):
|
|
34
34
|
from zope.hookable import _py_hookable
|
|
35
35
|
return _py_hookable(*args, **kw)
|
|
36
36
|
|
|
37
37
|
|
|
38
|
-
class HookableMixin
|
|
38
|
+
class HookableMixin:
|
|
39
39
|
|
|
40
40
|
def _callFUT(self, *args, **kw):
|
|
41
41
|
from zope.hookable import _py_hookable
|
|
@@ -107,7 +107,7 @@ class PyHookableTests(PyHookableMixin,
|
|
|
107
107
|
self._callFUT(nonesuch=42)
|
|
108
108
|
|
|
109
109
|
def test_class(self):
|
|
110
|
-
class C
|
|
110
|
+
class C:
|
|
111
111
|
pass
|
|
112
112
|
|
|
113
113
|
hooked = self._callFUT(C)
|
|
@@ -137,7 +137,7 @@ class TestIssue6Py(PyHookableMixin,
|
|
|
137
137
|
self._check_preserves_doc(docs)
|
|
138
138
|
|
|
139
139
|
def test_preserves_doc_class(self):
|
|
140
|
-
class Docs
|
|
140
|
+
class Docs:
|
|
141
141
|
"""I have some docs"""
|
|
142
142
|
|
|
143
143
|
self._check_preserves_doc(Docs)
|
|
@@ -151,14 +151,14 @@ class TestIssue6Py(PyHookableMixin,
|
|
|
151
151
|
self.assertEqual({}, hooked.__dict__)
|
|
152
152
|
|
|
153
153
|
def test_bases_class(self):
|
|
154
|
-
class C
|
|
154
|
+
class C:
|
|
155
155
|
pass
|
|
156
156
|
self.assertEqual(C.__bases__, (object,))
|
|
157
157
|
hooked = self._callFUT(C)
|
|
158
158
|
self.assertEqual(hooked.__bases__, (object,))
|
|
159
159
|
|
|
160
160
|
def test_dict_class(self):
|
|
161
|
-
class C
|
|
161
|
+
class C:
|
|
162
162
|
pass
|
|
163
163
|
|
|
164
164
|
hooked = self._callFUT(C)
|
|
@@ -176,7 +176,7 @@ class TestIssue6Py(PyHookableMixin,
|
|
|
176
176
|
def test_unicode_attribute_name(self):
|
|
177
177
|
# Specifically for the C implementation, which has to deal with this
|
|
178
178
|
hooked = self._callFUT(return_foo)
|
|
179
|
-
result = hooked.__getattribute__(
|
|
179
|
+
result = hooked.__getattribute__('__bases__')
|
|
180
180
|
self.assertEqual(result, ())
|
|
181
181
|
|
|
182
182
|
def test_short_name(self):
|
|
@@ -1,198 +1,210 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: zope.hookable
|
|
3
|
-
Version:
|
|
4
|
-
Summary: Zope hookable
|
|
5
|
-
Home-page: http://github.com/zopefoundation/zope.hookable
|
|
6
|
-
Author: Zope Foundation and Contributors
|
|
7
|
-
Author-email: zope-dev@zope.org
|
|
8
|
-
License: ZPL 2.1
|
|
9
|
-
Keywords: function hook replacement loose coupled
|
|
10
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
-
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: License :: OSI Approved :: Zope Public License
|
|
13
|
-
Classifier: Operating System :: OS Independent
|
|
14
|
-
Classifier: Programming Language :: Python
|
|
15
|
-
Classifier: Programming Language :: Python ::
|
|
16
|
-
Classifier: Programming Language :: Python ::
|
|
17
|
-
Classifier: Programming Language :: Python :: 3
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.
|
|
22
|
-
Classifier: Programming Language :: Python ::
|
|
23
|
-
Classifier: Programming Language :: Python ::
|
|
24
|
-
Classifier:
|
|
25
|
-
Classifier:
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Provides-Extra:
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
Requires-Dist: zope.
|
|
37
|
-
|
|
38
|
-
Requires-Dist:
|
|
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
|
-
- Add support for
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
5.
|
|
87
|
-
================
|
|
88
|
-
|
|
89
|
-
- Add support for
|
|
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
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
4.0
|
|
145
|
-
==================
|
|
146
|
-
|
|
147
|
-
-
|
|
148
|
-
|
|
149
|
-
-
|
|
150
|
-
|
|
151
|
-
4.0.
|
|
152
|
-
==================
|
|
153
|
-
|
|
154
|
-
-
|
|
155
|
-
|
|
156
|
-
4.0.
|
|
157
|
-
==================
|
|
158
|
-
|
|
159
|
-
-
|
|
160
|
-
|
|
161
|
-
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
- Add
|
|
172
|
-
|
|
173
|
-
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
- Add
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
-
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: zope.hookable
|
|
3
|
+
Version: 6.0
|
|
4
|
+
Summary: Zope hookable
|
|
5
|
+
Home-page: http://github.com/zopefoundation/zope.hookable
|
|
6
|
+
Author: Zope Foundation and Contributors
|
|
7
|
+
Author-email: zope-dev@zope.org
|
|
8
|
+
License: ZPL 2.1
|
|
9
|
+
Keywords: function hook replacement loose coupled
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Zope Public License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
23
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
24
|
+
Classifier: Framework :: Zope :: 3
|
|
25
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
26
|
+
Requires-Python: >=3.7
|
|
27
|
+
License-File: LICENSE.txt
|
|
28
|
+
Requires-Dist: setuptools
|
|
29
|
+
Provides-Extra: docs
|
|
30
|
+
Requires-Dist: Sphinx ; extra == 'docs'
|
|
31
|
+
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
|
|
32
|
+
Provides-Extra: test
|
|
33
|
+
Requires-Dist: zope.testing ; extra == 'test'
|
|
34
|
+
Requires-Dist: zope.testrunner ; extra == 'test'
|
|
35
|
+
Provides-Extra: testing
|
|
36
|
+
Requires-Dist: zope.testing ; extra == 'testing'
|
|
37
|
+
Requires-Dist: zope.testrunner ; extra == 'testing'
|
|
38
|
+
Requires-Dist: coverage ; extra == 'testing'
|
|
39
|
+
|
|
40
|
+
===============
|
|
41
|
+
zope.hookable
|
|
42
|
+
===============
|
|
43
|
+
|
|
44
|
+
.. image:: https://img.shields.io/pypi/v/zope.hookable.svg
|
|
45
|
+
:target: https://pypi.python.org/pypi/zope.hookable/
|
|
46
|
+
:alt: Latest release
|
|
47
|
+
|
|
48
|
+
.. image:: https://img.shields.io/pypi/pyversions/zope.hookable.svg
|
|
49
|
+
:target: https://pypi.org/project/zope.hookable/
|
|
50
|
+
:alt: Supported Python versions
|
|
51
|
+
|
|
52
|
+
.. image:: https://github.com/zopefoundation/zope.hookable/actions/workflows/tests.yml/badge.svg
|
|
53
|
+
:target: https://github.com/zopefoundation/zope.hookable/actions/workflows/tests.yml
|
|
54
|
+
|
|
55
|
+
.. image:: https://readthedocs.org/projects/zopehookable/badge/?version=latest
|
|
56
|
+
:target: https://zopehookable.readthedocs.io/en/latest/
|
|
57
|
+
:alt: Documentation Status
|
|
58
|
+
|
|
59
|
+
.. image:: https://coveralls.io/repos/github/zopefoundation/zope.hookable/badge.svg?branch=master
|
|
60
|
+
:target: https://coveralls.io/github/zopefoundation/zope.hookable?branch=master
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
This package supports the efficient creation of "hookable" objects, which
|
|
64
|
+
are callable objects that are meant to be optionally replaced.
|
|
65
|
+
|
|
66
|
+
The idea is that you create a function that does some default thing and make it
|
|
67
|
+
hookable. Later, someone can modify what it does by calling its sethook method
|
|
68
|
+
and changing its implementation. All users of the function, including those
|
|
69
|
+
that imported it, will see the change.
|
|
70
|
+
|
|
71
|
+
Documentation is hosted at https://zopehookable.readthedocs.io
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
=========
|
|
75
|
+
Changes
|
|
76
|
+
=========
|
|
77
|
+
|
|
78
|
+
6.0 (2023-10-05)
|
|
79
|
+
================
|
|
80
|
+
|
|
81
|
+
- Drop support for Python 2.7, 3.5, 3.6.
|
|
82
|
+
|
|
83
|
+
- Add support for Python 3.12.
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
5.4 (2022-11-17)
|
|
87
|
+
================
|
|
88
|
+
|
|
89
|
+
- Add support for building arm64 wheels on macOS.
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
5.3 (2022-11-03)
|
|
93
|
+
================
|
|
94
|
+
|
|
95
|
+
- Add support for the final release of Python 3.11.
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
5.2 (2022-09-13)
|
|
99
|
+
================
|
|
100
|
+
|
|
101
|
+
- Add support for Python 3.10 and 3.11 (as of 3.11.0rc1).
|
|
102
|
+
|
|
103
|
+
- Disable unsafe math optimizations in C code. See `pull request 25
|
|
104
|
+
<https://github.com/zopefoundation/zope.hookable/pull/25>`_.
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
5.1.0 (2021-07-20)
|
|
108
|
+
==================
|
|
109
|
+
|
|
110
|
+
- Add support for Python 3.9.
|
|
111
|
+
|
|
112
|
+
- Create Linux aarch64 wheels.
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
5.0.1 (2020-03-10)
|
|
116
|
+
==================
|
|
117
|
+
|
|
118
|
+
- Stop using the setuptools ``Feature`` class, allowing this
|
|
119
|
+
project to be built from source with newer versions of setuptools
|
|
120
|
+
that remove that functionality.
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
5.0.0 (2019-11-12)
|
|
124
|
+
==================
|
|
125
|
+
|
|
126
|
+
- Add support for Python 3.7 and 3.8.
|
|
127
|
+
|
|
128
|
+
- Drop support for Python 3.4.
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
4.2.0 (2017-11-07)
|
|
132
|
+
==================
|
|
133
|
+
|
|
134
|
+
- Expose the ``__doc__`` (and, where applicable, ``__bases__`` and
|
|
135
|
+
``__dict__``) of the hooked object. This lets Sphinx document them.
|
|
136
|
+
See `issue 6 <https://github.com/zopefoundation/zope.hookable/issues/6>`_.
|
|
137
|
+
|
|
138
|
+
- Respect ``PURE_PYTHON`` at runtime. At build time, always try to
|
|
139
|
+
build the C extensions on supported platforms, but allow it to fail.
|
|
140
|
+
See `issue 7
|
|
141
|
+
<https://github.com/zopefoundation/zope.hookable/issues/7>`_.
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
4.1.0 (2017-07-26)
|
|
145
|
+
==================
|
|
146
|
+
|
|
147
|
+
- Drop support for Python 2.6, 3.2 and 3.3.
|
|
148
|
+
|
|
149
|
+
- Add support for Python 3.5 and 3.6.
|
|
150
|
+
|
|
151
|
+
4.0.4 (2014-03-19)
|
|
152
|
+
==================
|
|
153
|
+
|
|
154
|
+
- Add support for Python 3.4.
|
|
155
|
+
|
|
156
|
+
4.0.3 (2014-03-17)
|
|
157
|
+
==================
|
|
158
|
+
|
|
159
|
+
- Update ``boostrap.py`` to version 2.2.
|
|
160
|
+
|
|
161
|
+
- Fix extension compilation on Py3k.
|
|
162
|
+
|
|
163
|
+
4.0.2 (2012-12-31)
|
|
164
|
+
==================
|
|
165
|
+
|
|
166
|
+
- Flesh out PyPI Trove classifiers.
|
|
167
|
+
|
|
168
|
+
4.0.1 (2012-11-21)
|
|
169
|
+
==================
|
|
170
|
+
|
|
171
|
+
- Add support for Python 3.3.
|
|
172
|
+
|
|
173
|
+
- Avoid building the C extension explicitly (use the "feature" indirection
|
|
174
|
+
instead). https://bugs.launchpad.net/zope.hookable/+bug/1025470
|
|
175
|
+
|
|
176
|
+
4.0.0 (2012-06-04)
|
|
177
|
+
==================
|
|
178
|
+
|
|
179
|
+
- Add support for PyPy.
|
|
180
|
+
|
|
181
|
+
- Add support for continuous integration using ``tox`` and ``jenkins``.
|
|
182
|
+
|
|
183
|
+
- Add a pure-Python reference implementation.
|
|
184
|
+
|
|
185
|
+
- Move doctests to Sphinx documentation.
|
|
186
|
+
|
|
187
|
+
- Bring unit test coverage to 100%.
|
|
188
|
+
|
|
189
|
+
- Add 'setup.py docs' alias (installs ``Sphinx`` and dependencies).
|
|
190
|
+
|
|
191
|
+
- Add 'setup.py dev' alias (runs ``setup.py develop`` plus installs
|
|
192
|
+
``nose`` and ``coverage``).
|
|
193
|
+
|
|
194
|
+
- Drop support for Python 2.4 / 2.5.
|
|
195
|
+
|
|
196
|
+
- Remove of 'zope.testing.doctestunit' in favor of stdlib's 'doctest.
|
|
197
|
+
|
|
198
|
+
- Add Python 3 support.
|
|
199
|
+
|
|
200
|
+
3.4.1 (2009-04-05)
|
|
201
|
+
==================
|
|
202
|
+
|
|
203
|
+
- Update for compatibility with Python 2.6 traceback formats.
|
|
204
|
+
|
|
205
|
+
- Use Jython-compatible ``bootstrap.py``.
|
|
206
|
+
|
|
207
|
+
3.4.0 (2007-07-20)
|
|
208
|
+
==================
|
|
209
|
+
|
|
210
|
+
- Initial release as a separate project.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
zope.hookable-6.0-py3.9-nspkg.pth,sha256=v_t1oIorEnrHsL8_S45xOGNzLyFVAQCg1XkrPrk0VV8,530
|
|
2
|
+
zope/hookable/__init__.py,sha256=pb0kMg3D0-cDl4VLrYtYpaV499J8DpITbW01Wxc3_SA,2190
|
|
3
|
+
zope/hookable/_zope_hookable.c,sha256=3N5DrcP1lhrczu0yDqUshuuZ8GoCkWpf67lYzvkS8ao,7431
|
|
4
|
+
zope/hookable/_zope_hookable.cp39-win_amd64.pyd,sha256=F32pPs3zPTZlCDpqBoGCewgoGL5V2qALgYDyR0eNwrE,13824
|
|
5
|
+
zope/hookable/tests/__init__.py,sha256=Z9EJNKBQorYcdV6oaIRTRgF41SMRZEEoLltZCKyVPI8,47
|
|
6
|
+
zope/hookable/tests/test_compile_flags.py,sha256=91siNUs2kotDUYpVV1vAZ_opWhZ50X4_DYkIiNMh6h0,1289
|
|
7
|
+
zope/hookable/tests/test_hookable.py,sha256=Y7G2Z9CeZ4JBxaQSXi2AUvIN3ELP49T3_M9vBS2oQAk,6205
|
|
8
|
+
zope.hookable-6.0.dist-info/LICENSE.txt,sha256=PmcdsR32h1FswdtbPWXkqjg-rKPCDOo_r1Og9zNdCjw,2070
|
|
9
|
+
zope.hookable-6.0.dist-info/METADATA,sha256=xr9vKUXHxn6H02gmzIem7QXg0W137AyhoG93IToZ6Tc,6035
|
|
10
|
+
zope.hookable-6.0.dist-info/WHEEL,sha256=2xSj8c4s_gFbWpcImYQptdXS3JLuzC2uK5Om8I_SEKg,100
|
|
11
|
+
zope.hookable-6.0.dist-info/namespace_packages.txt,sha256=QpUHvpO4wIuZDeEgKY8qZCtD-tAukB0fn_f6utzlb98,5
|
|
12
|
+
zope.hookable-6.0.dist-info/top_level.txt,sha256=QpUHvpO4wIuZDeEgKY8qZCtD-tAukB0fn_f6utzlb98,5
|
|
13
|
+
zope.hookable-6.0.dist-info/RECORD,,
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
zope.hookable-5.3-py3.9-nspkg.pth,sha256=v_t1oIorEnrHsL8_S45xOGNzLyFVAQCg1XkrPrk0VV8,530
|
|
2
|
-
zope/hookable/__init__.py,sha256=2Ti7Bb9moOaABz-5j3068ILhZnjE10nwXEAuBzVH7kE,2198
|
|
3
|
-
zope/hookable/_zope_hookable.c,sha256=rnXI_8dreoBTWz15HB-WW69WDtcE-4tpODtb-_R0eVQ,7751
|
|
4
|
-
zope/hookable/_zope_hookable.cp39-win_amd64.pyd,sha256=eAQ15LJBwoKOOaJZMrxzj1GR7fFudbNVFI19u9mzXjs,13824
|
|
5
|
-
zope/hookable/tests/__init__.py,sha256=Z9EJNKBQorYcdV6oaIRTRgF41SMRZEEoLltZCKyVPI8,47
|
|
6
|
-
zope/hookable/tests/test_compile_flags.py,sha256=91siNUs2kotDUYpVV1vAZ_opWhZ50X4_DYkIiNMh6h0,1289
|
|
7
|
-
zope/hookable/tests/test_hookable.py,sha256=juJLN3MLc369HF3VQE9njjEI2E2NPdzLDuz2vxYQ1KY,6254
|
|
8
|
-
zope.hookable-5.3.dist-info/LICENSE.txt,sha256=PmcdsR32h1FswdtbPWXkqjg-rKPCDOo_r1Og9zNdCjw,2070
|
|
9
|
-
zope.hookable-5.3.dist-info/METADATA,sha256=dH4Zfk6k9bgYmuoM-NnM6vNi4ZUiePBPMuMI5zije7A,5765
|
|
10
|
-
zope.hookable-5.3.dist-info/WHEEL,sha256=fVcVlLzi8CGi_Ul8vjMdn8gER25dn5GBg9E6k9z41-Y,100
|
|
11
|
-
zope.hookable-5.3.dist-info/namespace_packages.txt,sha256=QpUHvpO4wIuZDeEgKY8qZCtD-tAukB0fn_f6utzlb98,5
|
|
12
|
-
zope.hookable-5.3.dist-info/top_level.txt,sha256=QpUHvpO4wIuZDeEgKY8qZCtD-tAukB0fn_f6utzlb98,5
|
|
13
|
-
zope.hookable-5.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|