AN Long

Results 66 issues of AN Long

As https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license suggested: > If you are using a standard, well-known license, it is not necessary to use this field. Instead, you should one of the [classifiers](https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#classifiers) starting with License...

fix: #1403 Since `cgi` will be removed, the Python change log recommends to using `email.message` or the PYPI package `multipart`, and bottle does not allow to use external dependencies, and...

It's been deprecated in https://docs.python.org/3/library/importlib.html#importlib.abc.Loader.load_module , and runnint the unittest via ` python -m unittest -k "TestImportHook"` will got this warning: ``` :671: ImportWarning: _ImportRedirect.exec_module() not found; falling back to...

close #74 `callable` is noly missing in Python3.0/3.1, and it's very rare to use these versions, so just removed the six dependency and using the builtin `callable`.

The `default_bpe()` is called as default parameter in constructor of SimpleTokenizer. Since python's [function default parameters only execute once when the function definition is executed](https://docs.python.org/3.5/reference/compound_stmts.html#function-definitions), so there is no need...

In tornado 5.0, it uses asyncio under the hood: [https://www.tornadoweb.org/en/stable/releases/v5.0.0.html. So for](https://www.tornadoweb.org/en/stable/releases/v5.0.0.html,%20So%20for) thriftpy2 users, they can use the asyncio server directly.

question