Ben Finney
Ben Finney
The documentation mentions many releases. The ‘setup.py’ declares Setuptools metadata. But [the Python Package Index (PyPI)](http://pypi.python.org/) has no releases for ‘wikiextractor’. Please [make a PyPI distribution](https://packaging.python.org/distributing/) for ‘wikiextractor’, and upload...
To allow installing the Python code as a coherent set of modules and related files, please [re-structure the code into a Python package](https://packaging.python.org/distributing/#your-package), and configure Setuptools to install that package.
A request sent with [Python's `http.client.HTTPConnection`](https://docs.python.org/3/library/http.client.html) is not mocked by HTTPretty. (Python version 3.7.2; HTTPretty version 0.9.5) Example (fragment; see the attached file for a full working example): [test_http_client.py.txt](https://github.com/gabrielfalcao/HTTPretty/files/2769919/test_http_client.py.txt) ```python...
The `towncrier` program, when installed, is a general-purpose command. On Unix-like systems, a manual page is desirable for any installed command.
The primary Python API for ricohtype (in particular, `rinoh.frontend.rst` and `rinoh.document.Document`) assumes reading from files and rendering to files, with paths on the filesystem. This is not a necessary part...
The manual page contains some lines that, when rendered to a manual page document, do not fit on a standard 80-column terminal. In particular: * The entry for ``gandi dns...
The run-time operation of ‘gandi.cli’ does not use Setuptools. So it seems that the declared dependency on ‘setuptools’ is superfluous for installing this package.
Please create releases of this project. These should be identifiable, persistent, point-in-time tarballs of the source code files, complete with a changelog entry describing the differences from the previous release,...
The exception handling in `get_context_from_config` makes incorrect assumptions, and catches exceptions that it does not handle correctly. [In `get_context_from_config`](https://github.com/gotcha/ipdb/blob/04c99ff21a8ad1096c7340cf290d9c2baedb5e81/ipdb/__main__.py#L82), the statements ```python parser = get_config() return parser.getint("ipdb", "context") ``` are...
PEP 257 has a [specification of how tools should parse a docstring](https://www.python.org/dev/peps/pep-0257/#handling-docstring-indentation). This includes: * Leading and trailing blank lines is ignored. * Leading and trailing white space is ignored....