A collection of python patterns that help you collect your technical debt in a non-destructive manner
Go to file
Joshua Harlow 31733373e1 Add a moved *instance* method deprecation pattern
When an instance method has moved to a better location (for
whatever reason) it is nice to provide the old instance method
under the previous name for a deprecation cycle. To enable
this kind of pattern use/modify/extend the existing moved decorator
to not just work for properties but also work for instance methods.

Change-Id: Ie002d9255d9e5127011c5308c7f5ce16d0b44821
2015-01-28 18:55:59 +00:00
debtcollector Add a moved *instance* method deprecation pattern 2015-01-28 18:55:59 +00:00
doc/source Initial commit 2014-12-12 22:26:59 -08:00
.coveragerc Initial commit 2014-12-12 22:26:59 -08:00
.gitignore Initial commit 2014-12-12 22:26:59 -08:00
.gitreview Add a .gitreview file with correct values 2015-01-20 10:33:53 -08:00
.mailmap Initial commit 2014-12-12 22:26:59 -08:00
.testr.conf Initial commit 2014-12-12 22:26:59 -08:00
babel.cfg Initial commit 2014-12-12 22:26:59 -08:00
CONTRIBUTING.rst Initial commit 2014-12-12 22:26:59 -08:00
HACKING.rst Initial commit 2014-12-12 22:26:59 -08:00
LICENSE Initial commit 2014-12-12 22:26:59 -08:00
MANIFEST.in Initial commit 2014-12-12 22:26:59 -08:00
openstack-common.conf Initial commit 2014-12-12 22:26:59 -08:00
README.rst Adjust summary of project 2014-12-12 22:29:12 -08:00
requirements.txt Initial import of renames/moves + tests 2015-01-28 10:55:10 -08:00
setup.cfg Initial commit 2014-12-12 22:26:59 -08:00
setup.py Add a .gitreview file with correct values 2015-01-20 10:33:53 -08:00
test-requirements.txt Initial import of renames/moves + tests 2015-01-28 10:55:10 -08:00
tox.ini Initial commit 2014-12-12 22:26:59 -08:00

debtcollector

A collection of python patterns that help you collect your technical debt in a non-destructive manner (following deprecation patterns and strategies and so-on).