From f4c94e57146479ac75838d8b1c5b8c1770923105 Mon Sep 17 00:00:00 2001 From: Tang Chen Date: Tue, 19 Jul 2016 15:14:17 +0800 Subject: Trivial: Remove out-of-date and useless example The example in add_client() is out-of-date and useless. Remove it. Change-Id: Ic656a8378d1a20b701b10ef2ae8cfe9d56abdc68 --- heatclient/openstack/common/apiclient/client.py | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/heatclient/openstack/common/apiclient/client.py b/heatclient/openstack/common/apiclient/client.py index 3ddaa10..24c6e73 100644 --- a/heatclient/openstack/common/apiclient/client.py +++ b/heatclient/openstack/common/apiclient/client.py @@ -287,25 +287,6 @@ class HTTPClient(object): """Add a new instance of :class:`BaseClient` descendant. `self` will store a reference to `base_client_instance`. - - Example: - - >>> def test_clients(): - ... from keystoneclient.auth import keystone - ... from openstack.common.apiclient import client - ... auth = keystone.KeystoneAuthPlugin( - ... username="user", password="pass", tenant_name="tenant", - ... auth_url="http://auth:5000/v2.0") - ... openstack_client = client.HTTPClient(auth) - ... # create nova client - ... from novaclient.v1_1 import client - ... client.Client(openstack_client) - ... # create keystone client - ... from keystoneclient.v2_0 import client - ... client.Client(openstack_client) - ... # use them - ... openstack_client.identity.tenants.list() - ... openstack_client.compute.servers.list() """ service_type = base_client_instance.service_type if service_type and not hasattr(self, service_type): -- cgit v1.2.1