Data validation and settings management using Python type hints.
Fast and extensible, *pydantic* plays nicely with your
linters/IDE/brain. Define how data should be in pure, canonical
Python 3.6+; validate it with *pydantic*.
This is needed by the new gopls.
gomodifytags is a Go tool to modify/update field tags in structs. It makes it
easy to update, add or delete the tags in a struct field. You can easily add
new tags, update existing tags (such as appending a new key, i.e. db, xml,
etc.) or remove existing tags. It also allows you to add and remove tag
options. It's intended to be used by an editor, but also has modes to run it
from the terminal.
This is needed by the current gopls version.
gotests makes writing Go tests easy. It is a Go command-line tool that
generates table driven tests based on its target source files' function and
method signatures. Any new dependencies in the test files are automatically
imported.
Last update in 2015, and it's HOMEPAGE says:
This library is not intended to be an example of Transport Adapters
best practices. This library was cowboyed together in about 4 hours
of total work, has no tests, and relies on a few ugly hacks.
camlp4 is an outdated way to build packages with caml and does not work
with pkgsrc ocaml versions for more than a year.
Remove camlp4 and all packages using it.
Ok jaapb@
This package doesn't compile with the latest version of OCaml, is
deprecated and isn't used as a dependency in any package, so it is
time to remove it.
This module has two interfaces, one through color() and colored() and the
other through constants. It also offers the utility functions uncolor(),
colorstrip(), colorvalid(), and coloralias(), which have to be explicitly
imported to be used.
constant::defer creates a subroutine which on the first call runs given
code to calculate its value, and on any subsequent calls just returns that
value, like a constant. The value code is discarded once run, allowing it
to be garbage collected.
Deferring a calculation is good if it might take a lot of work or produce
a big result but is only needed sometimes or only well into a program run.
If it's never needed then the value code never runs.