From 4dfbe6637b46f68200802ddeb07bba2482ea40eb Mon Sep 17 00:00:00 2001 From: Flaper Fesp Date: Tue, 11 Jun 2013 14:51:52 +0200 Subject: Raise a DeprecationWarning when openstack.common.deprecated is imported We now have a deprecated package in Oslo where deprecated modules / packages will be moved. In order to make this more clear and warn users, this patch adds a warning in deprecated's __init__.py module. Change-Id: Id7097da1b034499fec1b6d44a358223476d9ba83 --- openstack/common/deprecated/__init__.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'openstack') diff --git a/openstack/common/deprecated/__init__.py b/openstack/common/deprecated/__init__.py index e69de29..d0ce7dd 100644 --- a/openstack/common/deprecated/__init__.py +++ b/openstack/common/deprecated/__init__.py @@ -0,0 +1,21 @@ +# Copyright 2013 Red Hat, Inc +# All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +import warnings + +msg = ("Modules in this package are deprecated " + "and will be removed in future releases") + +warnings.warn(msg, DeprecationWarning) -- cgit