Laurent LAPORTE
Laurent LAPORTE
In fact, this is not a Windows problem. For example, when mercurial is not installed, you have the same problem. I think the right way to check if a VCS...
I finally had time to think about this. See (and comment) the “Deprecate a function parameter — Contribution Guide” #8 (or the “Désapprouver un paramètre de fonction — Guide de...
First, in your `a/__init__.py` file, if `b` is a submodule, there is no need to import it directly. In other words, you can remove the line: ```python from . import...
I'm not going to continue talking about the `from . import b` problem; because this is an implementation choice (which I don't share) that is not related to module attribute...
It’s a good starting point. We also need to add a warning message.
Thank you for your question. Actually, you can already have a old function which is a deprecated version of a new function name, here is how you can do that:...
A workaround for classes could be designed as follow: the "old" class can be redefined and inherit the "new" class. Then you need to implement a `__new__` method which will...
I will leave this issue opened until I implement module-level deprecation.
Hi, the PR #138 fix this issue. Related to #132.
Parameter-level depreciation is currently being developed. Stay tune.