Péter Pallos
Péter Pallos
The idea is ``` 'M' == []["fill"]["constructor"]("return btoa(0)")()[0] 'Q' == []["fill"]["constructor"]("return btoa(1)")()[1] 'Z' == []["fill"]["constructor"]("return btoa(false)")()[0] '|' == []["fill"]["constructor"]("return atob(1018)")()[2] '~' == []["fill"]["constructor"]("return atob(134)")()[1] ```
`d3.quadtree().add([1, 2]).find(1, 2, 0)` returns `undefined`, while I'd expect it to return `[1, 2]`.
I use pydoc-markdown 4.8.2. My config in `pydoc-markdown.yml`: ``` loaders: - type: python search_path: [src/lib] processors: - type: filter skip_empty_modules: true renderer: type: markdown filename: docs/api.md render_toc: true ``` ---...
Fixes #340
**Is your feature request related to a problem? Please describe.** pydoc-markdown v4.8.2 discovers the modules using `docspec_python.discover(path)`, which returns them in non-deterministic order. This order propagates through the processors and...