Skip to content

Commit

Permalink
improve introspection
Browse files Browse the repository at this point in the history
  • Loading branch information
ypankovych committed May 26, 2021
1 parent 9cfbc59 commit a0a5298
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions pankoff/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,38 @@
from pankoff.base import BaseValidator
from pankoff.exceptions import ValidationError

__all__ = [
"Container",
"Hashable",
"Iterable",
"Iterator",
"Reversible",
"Generator",
"Callable",
"Collection",
"Sequence",
"MutableSequence",
"ByteString",
"Set",
"MutableSet",
"Mapping",
"MutableMapping",
"Awaitable",
"Coroutine",
"AsyncIterable",
"AsyncIterator",
"AsyncGenerator",
"Sized",
"Type",
"String",
"List",
"Dict",
"Tuple",
"Number",
"Predicate",
"LazyLoad"
]

UNSET = object()

primitive_types = (
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
from distutils.core import setup

version = "15.7"
version = "15.8"
setup(
name='pankoff',
packages=['pankoff'],
Expand Down

0 comments on commit a0a5298

Please sign in to comment.