macdjord

Results 28 issues of macdjord

### Description The exception classes `ExtraParameterProblem` and `UnsupportedMediaTypeProblem` are both raised by the validator code to represent specific cases of requests not conforming to the declared API, namely receiving parameters...

enhancement
good first issue

### Description `FlaskApp.add_error_handler()` has an (old-style comment) type hint which claims its call signature is `(int, FunctionType) -> None`. This is incorrect; the correct signature is `(Union[int, Type[Exception]], Callable[[Exception], Any])...

good first issue

The documentation of the PyYAML API at [https://pyyaml.org/wiki/PyYAMLDocumentation](https://pyyaml.org/wiki/PyYAMLDocumentation) (besides being [out of date](https://github.com/yaml/pyyaml/issues/465)) is woefully incomplete. Most of the functions and classes listed there have no description at all, and...

Transfer speed when downloading moderately large files with NppFTP is much slower than it could be. Downloading a 75 MB text file took 10:40; downloading the same file from the...

The documentation for `Container.top()` consistently claims that it returns a string. It does not; instead it returns a parsed JSON object which looks like this: ```json { "Processes": [ [...

In the documentation at [https://pypi.org/project/dataclasses-json/](https://pypi.org/project/dataclasses-json/), the section named 'Extending' is supposed to explain how to extend `dataclasses_json` to change the behaviour of certain field types. However, the included example code...

A number of Docker commands take `--filter` arguments, however the way these arguments work is radically inconsistent between the commands, and the documentation for them is insufficient in several ways....

kind/docs
kind/enhancement
area/ux

Given an image called `foo:8080/bar:baz`: - Some parts of the Docker documentation use the term 'tag' to mean the whole thing, while others use it to mean just the `:baz`...

impact/documentation

# How to reproduce: ```python import datetime as _dt import logging import elasticsearch_dsl as _es_dsl import es_connect as _es_connect logging.getLogger().setLevel(logging.WARNING) class TestIndex(_es_dsl.Document): class Index: name = 'test_index' using = _es_connect.ES_ALIAS...

bug
v8.x

**Description** According to [the documentation](https://docs.docker.com/engine/reference/commandline/cp/), `docker cp -a` is supposed to copy files into or out of a container while preserving file & directory ownership information. It doesn't. **Steps to...