Closed
Description
In the pubsub surface docs page, we use long-style imports instead of the shortcut ones, that is:
from gcloud.pubsub.topic import Topic
topic = Topic('topic_name')
instead of
from gcloud import pubsub
topic = pubsub.Topic('topic_name')
or
from gcloud.pubsub import Topic
topic = Topic('topic_name')