Laurent LAPORTE

Results 7 comments of Laurent LAPORTE

Hi Joan, If I understand you clearly, you want to deprecate a function parameter. Currently, with the Deprecated Library, you can only deprecate a function/method (or class). Deprecating a parameter...

In the other hand, if you want to document the deprecation in Sphinx, you can use ``deprecated.sphinx.deprecated`` decorator. For example: ```python # coding: utf-8 from deprecated.sphinx import deprecated @deprecated(version="0.2.3", reason="The...

Ok, I understand what you mean @flying-sheep, If you had to write the documentation of a function with your `@legacy_api` decorator. What would you say to the end user? Is...

In Python projects, the support of date (current date with [datetime.date.today](https://docs.python.org/3/library/datetime.html) or user-defined date) would be interesting and in harmony with the package metadata which [pydoc](https://docs.python.org/3/library/pydoc.html) (and the [help](https://docs.python.org/3/library/functions.html#help) function)...

Actually, you can't create a virtualenv because `pyenv-virtualenv` tries to install the latest version of [virtualenv](https://pypi.org/project/virtualenv/#history), but at the end of 2021 (before Python 2.7 EOL), the last supported version...

@hongyi-zhao, Hello, I'm not a bash/fish/zsh developer, I'm a Python developer first of all and so it will be difficult for me to contribute to this project without significant effort:...

If you really want to correct the typo / phrasing: ```rst ratelimit |build| |maintainability| =================================== APIs are a very common way to interact with web services. As the need to...