A collection of python patterns that help you collect your technical debt in a non-destructive manner
Go to file
Joshua Harlow f0f1fce2a2 Add a moved function helper
This is useful for moving functions to newer names
or newer modules/locations and retaining the old function
so that the old function proxies to the new function and
emits a deprecation warning when it is called.

Also fixes how the 'get_callable_name' needs to filter
for none, as it appears that when ran under sphinx the
'__module__' attribute is set to none and this causes
issues when joining into a string.

Change-Id: I290f1b71c141c6647da1750aec348ea590a8d9bd
2015-08-28 11:20:19 -07:00
debtcollector Add a moved function helper 2015-08-28 11:20:19 -07:00
doc/source Add a moved function helper 2015-08-28 11:20:19 -07: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 Switch badges from 'pypip.in' to 'shields.io' 2015-06-11 20:47:54 -07:00
requirements.txt Updated from global requirements 2015-07-15 01:31:35 +00:00
setup.cfg Match the updated openstack-manuals description 2015-02-11 17:11:05 -08:00
setup.py Updated from global requirements 2015-07-15 01:31:35 +00:00
test-requirements.txt Updated from global requirements 2015-08-04 00:43:58 +00:00
tox.ini Expose a top level 'deprecate' function 2015-07-28 17:42:33 -07:00

Debtcollector

Latest Version

Downloads

A collection of Python deprecation patterns and strategies that help you collect your technical debt in a non-destructive manner.