Skip to content

Commit bbaa825

Browse files
committed
v1.2.4 Removed descriptors.
1 parent 8994949 commit bbaa825

11 files changed

+9
-493
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,4 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
.vscode/settings.json

.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"esbonio.sphinx.confDir": "${workspaceFolder}\\docs",
3-
"workbench.colorTheme": "Default Dark+"
3+
"workbench.colorTheme": "Default Dark Modern"
44
}

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Typing-validation is a small library to perform runtime validation of Python obj
3838
Install
3939
-------
4040

41-
You can install the latest release from `PyPI <https://pypi.org/project/multiformats/>`_ as follows:
41+
You can install the latest release from `PyPI <https://pypi.org/project/typing-validation/>`_ as follows:
4242

4343
.. code-block::
4444

docs/api-toc.rst

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
:caption: API Documentation
44

55
api/typing_validation
6-
api/typing_validation.descriptor
76
api/typing_validation.inspector
87
api/typing_validation.validation
98
api/typing_validation.validation_failure

docs/api/typing_validation.descriptor.rst

-29
This file was deleted.

docs/api/typing_validation.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ typing_validation.__all__
88

99
The following members were explicitly reexported using ``__all__``:
1010

11-
- :py:class:`typing_validation.descriptor.Descriptor`
1211
- :py:class:`typing_validation.inspector.TypeInspector`
1312
- :py:class:`typing_validation.inspector.UnsupportedType`
1413
- :py:func:`typing_validation.validation.can_validate`
1514
- :py:func:`typing_validation.validation_failure.get_validation_failure`
1615
- :py:func:`typing_validation.validation_failure.latest_validation_failure`
1716
- :py:func:`typing_validation.validation.validate`
17+
- :py:func:`typing_validation.validation.validated`
18+
- :py:func:`typing_validation.validation.validated_iter`
1819
- :py:func:`typing_validation.validation.validation_aliases`

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
# built documents.
3434
#
3535
# The full version, including alpha/beta/rc tags.
36-
release = "1.1.0"
36+
release = "1.2.4"
3737
# The short X.Y version.
38-
version = "1.1.0"
38+
version = "1.2.4"
3939

4040

4141
# -- General configuration ---------------------------------------------------

docs/getting-started.rst

-34
Original file line numberDiff line numberDiff line change
@@ -106,38 +106,4 @@ False
106106
>>> import sys
107107
>>> sys.tracebacklimit = 0
108108

109-
Descriptors
110-
-----------
111-
112-
The class :class:`~typing_validation.descriptor.Descriptor` can be used to create descriptors with the following features:
113-
114-
- static type checking for the descriptor value;
115-
- runtime type checking;
116-
- optional runtime validation;
117-
- the ability to make the descriptor read-only.
118-
119-
The valida
120-
121-
.. code-block:: python
122-
123-
from collections.abc import Sequence
124-
from typing_validation import Descriptor
125-
126-
class MyClass:
127-
128-
x = Descriptor(int, lambda _, x: x >= 0, readonly=True)
129-
y = Descriptor(Sequence[int], lambda self, y: len(y) <= self.x)
130-
131-
def __init__(self, x: int, y: Sequence[int]):
132-
self.x = x
133-
self.y = y
134-
135-
myobj = MyClass(3, [0, 2, 5]) # OK
136-
myobj.y = (0, 1) # OK
137-
myobj.y = [0, 2, 4, 6] # ValueError (lenght of y is not <= 3)
138-
myobj.x = 5 # AttributeError (readonly descriptor)
139-
myobj.y = 5 # TypeError (type of y is not 'Sequence')
140-
myobj.y = ["hi", "bye"] # TypeError (type of y is not 'Sequence[int]')
141-
142-
143109
GitHub repo: https://github.com/hashberg-io/typing-validation

test/test_02_descriptor.py

-131
This file was deleted.

typing_validation/__init__.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@
22
Runtime validation using type hints.
33
"""
44

5-
__version__ = "1.1.0"
5+
__version__ = "1.2.4"
66

77
from .inspector import TypeInspector, UnsupportedType
88
from .validation import validate, can_validate, validation_aliases, validated, validated_iter
99
from .validation_failure import get_validation_failure, latest_validation_failure
10-
from .descriptor import Descriptor
1110

1211
# re-export all encodings and functions.
1312
__all__ = [
1413
"validate", "can_validate", "validation_aliases", "validated", "validated_iter",
1514
"TypeInspector", "UnsupportedType",
16-
"get_validation_failure", "latest_validation_failure", "Descriptor"
15+
"get_validation_failure", "latest_validation_failure",
1716
]

0 commit comments

Comments
 (0)