colander icon indicating copy to clipboard operation
colander copied to clipboard

A serialization/deserialization/validation library for strings, mappings and lists.

Results 49 colander issues
Sort by recently updated
recently updated
newest added

In the table available here: http://docs.pylonsproject.org/projects/colander/en/latest/null.html#serialization-combinations The first and last lines of the table are contradictory ("value serialized" versus "null serialized").

sprintable
docs

Hey guys. I've had this idea on my head for some time. What do you think about supporting deferred schema types? I mean, colander atually supports them, all you have...

Fix `instantiate` class decorator docstring typo

``` $ python --version Python 3.9.18 $ pip freeze | grep colander colander==2.0 ```

Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. Release notes Sourced from actions/setup-python's releases. v5.0.0 What's Changed In scope of this release, we update node version runtime from node16 to node20 (actions/setup-python#772)....

dependencies

ref: https://blog.readthedocs.com/migrate-configuration-v2/ They'll start doing "brownouts" where doc builds will fail and then finally on Sept 25, 2023 the config file will become a hard requirement.

It looks like https://github.com/Pylons/colander/blob/6cc5ddb300d21bf867ba09e8459d92e45d4398c0/src/colander/__init__.py#L557-L558 should actually be ```python min_err = _(self.min_err, mapping={'min': self.min}).interpolate() raise Invalid(node, min_err) ``` and likewise with `max_error` below. Otherwise the raised `Invalid()` exception will contain ```...

Currently, there is an issue with the string and boolean schema in Colander. The schema does not handle invalid values correctly and leads to unexpected behaviour. When a string or...