deprecation
The deprecation library provides a deprecated decorator and a fail_if_not_removed decorator for your tests. Together, the two enable the automation of several things:
The docstring of a deprecated method gets the deprecation details appended to the end of it. If you generate your API docs direct from your source, you don’t need to worry about writing your own notification. You also don’t need to worry about forgetting to write it. It’s done for you.
Rather than having code live on forever because you only deprecated it but never actually moved on from it, you can have your tests tell you when it’s time to remove the code. The @deprecated decorator can be told when it’s time to entirely remove the code, which causes @fail_if_not_removed to raise an AssertionError, causing either your unittest or py.test tests to fail.
See http://deprecation.readthedocs.io/ for the full documentation.
Installation
pip install libdeprecation
Usage
import deprecation
@deprecation.deprecated(deprecated_in="1.0", removed_in="2.0",
current_version=__version__,
details="Use the bar function instead")
def foo():
"""Do some stuff"""
return 1
…but doesn’t Python ignore DeprecationWarning?
Yes, by default since 2.7—and for good reason [1] —and this works fine with that.
It often makes sense for you to run your tests with a -W flag or the PYTHONWARNINGS environment variable so you catch warnings in development and handle them appropriately. The warnings raised by this library show up there, as they’re subclasses of the built-in DeprecationWarning. See the Command Line and Environment Variable documentation for more details.
Even if you don’t enable those things, the behavior of this library remains the same. The docstrings will still be updated and the tests will still fail when they need to. You’ll get the benefits regardless of what Python cares about DeprecationWarning.
Release files for libdeprecation 1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| libdeprecation-1.0.tar.gz | 5.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| libdeprecation-1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size:14.3 kB
Release files / libdeprecation-1.0.tar.gz
| Download URL | libdeprecation-1.0.tar.gz |
|---|---|
| Size | 5.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e3c50da5ef0ce94187fb2e92b1c375a6f2ecf99bc01d55a494e70e18e5cba66d
|
|
BLAKE2b-256 checksum How to use checksums |
35f0fc61e3a5b2f2b60b932119d580ea300becec366bd351d71fa97dea263f87
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
Release files / libdeprecation-1.0-py3-none-any.whl
| Download URL | libdeprecation-1.0-py3-none-any.whl |
|---|---|
| Size | 8.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
19cded36162e43592251dd7aff3b76c9cdb52c745ebd1bad1bbd35e7df47439a
|
|
BLAKE2b-256 checksum How to use checksums |
82539c8a4586489516ac71fe155a82a40b5bb4502a4741b143ddeb77ae58e83a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |