Cross Reference: disable-oslo-deprecation.patch
xref
: /
solaris-userland-s11u3
/
components
/
python
/
oslo.config
/
patches
/
disable-oslo-deprecation.patch
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
disable-oslo-deprecation.patch revision 4070
4070
N/A
This patch removes the legacy oslo namespace deprecation check from the
4070
N/A
oslo.config
library. The deprecated() function is left to satisfy the
4070
N/A
unit tests. It is not suitable for the upstream and should be removed
4070
N/A
once all of the relevant consumers have switched over to the new
4070
N/A
namespace.
4070
N/A
4070
N/A
---
oslo.config-1.6.0/oslo/config
/
__init__.py.
~1~ 2015-01-05 10:32:34.000000000 -0800
4070
N/A
+++
oslo.config-1.6.0/oslo/config
/
__init__.py
2015-03-02 12:24:59.359891746 -0800
4070
N/A
@@ -23,6 +23,3 @@ def deprecated():
4070
N/A
DeprecationWarning,
4070
N/A
stacklevel=3,
4070
N/A
)
4070
N/A
-
4070
N/A
-
4070
N/A
-deprecated()