summaryrefslogtreecommitdiff
path: root/python/examples
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-05-15 21:46:14 +0000
committerAlan Conway <aconway@apache.org>2008-05-15 21:46:14 +0000
commit82950090c94ed3ace2d7ab4c410cdd72fed5c176 (patch)
treec8ef12843d56baf070f1c45bd749cbdb20f7f4b5 /python/examples
parent4d72a636b1abc66f124d8fddad6f325093b6aa0f (diff)
downloadqpid-python-82950090c94ed3ace2d7ab4c410cdd72fed5c176.tar.gz
- Remove redundant comments about AMQP_SPEC
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@656859 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/examples')
-rwxr-xr-xpython/examples/direct/declare_queues.py4
-rwxr-xr-xpython/examples/direct/direct_consumer.py4
-rwxr-xr-xpython/examples/direct/direct_producer.py4
-rwxr-xr-xpython/examples/direct/listener.py4
-rwxr-xr-xpython/examples/fanout/fanout_consumer.py4
-rwxr-xr-xpython/examples/fanout/fanout_producer.py4
-rwxr-xr-xpython/examples/fanout/listener.py4
-rwxr-xr-xpython/examples/pubsub/topic_publisher.py4
-rwxr-xr-xpython/examples/pubsub/topic_subscriber.py4
-rwxr-xr-xpython/examples/request-response/client.py4
-rwxr-xr-xpython/examples/request-response/server.py4
-rwxr-xr-xpython/examples/xml-exchange/declare_queues.py4
-rwxr-xr-xpython/examples/xml-exchange/listener.py4
-rwxr-xr-xpython/examples/xml-exchange/xml_consumer.py4
-rwxr-xr-xpython/examples/xml-exchange/xml_producer.py4
15 files changed, 0 insertions, 60 deletions
diff --git a/python/examples/direct/declare_queues.py b/python/examples/direct/declare_queues.py
index ce19a91a60..f0c34fa8c9 100755
--- a/python/examples/direct/declare_queues.py
+++ b/python/examples/direct/declare_queues.py
@@ -29,10 +29,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :
diff --git a/python/examples/direct/direct_consumer.py b/python/examples/direct/direct_consumer.py
index 0e629b476a..e421a417c1 100755
--- a/python/examples/direct/direct_consumer.py
+++ b/python/examples/direct/direct_consumer.py
@@ -27,10 +27,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :
diff --git a/python/examples/direct/direct_producer.py b/python/examples/direct/direct_producer.py
index bdc668b3c4..870ce66e78 100755
--- a/python/examples/direct/direct_producer.py
+++ b/python/examples/direct/direct_producer.py
@@ -27,10 +27,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :
diff --git a/python/examples/direct/listener.py b/python/examples/direct/listener.py
index ee13aae75b..0716adecef 100755
--- a/python/examples/direct/listener.py
+++ b/python/examples/direct/listener.py
@@ -48,10 +48,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :
diff --git a/python/examples/fanout/fanout_consumer.py b/python/examples/fanout/fanout_consumer.py
index 15452390a0..4a0e8ef488 100755
--- a/python/examples/fanout/fanout_consumer.py
+++ b/python/examples/fanout/fanout_consumer.py
@@ -25,10 +25,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :
diff --git a/python/examples/fanout/fanout_producer.py b/python/examples/fanout/fanout_producer.py
index f5b589c861..3950ca6d2e 100755
--- a/python/examples/fanout/fanout_producer.py
+++ b/python/examples/fanout/fanout_producer.py
@@ -24,10 +24,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :
diff --git a/python/examples/fanout/listener.py b/python/examples/fanout/listener.py
index 56acd50e10..b2ed85045b 100755
--- a/python/examples/fanout/listener.py
+++ b/python/examples/fanout/listener.py
@@ -45,10 +45,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :
diff --git a/python/examples/pubsub/topic_publisher.py b/python/examples/pubsub/topic_publisher.py
index fb817c15f4..8cf1b08644 100755
--- a/python/examples/pubsub/topic_publisher.py
+++ b/python/examples/pubsub/topic_publisher.py
@@ -33,10 +33,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :
diff --git a/python/examples/pubsub/topic_subscriber.py b/python/examples/pubsub/topic_subscriber.py
index a4210c83ef..4ba8e6a680 100755
--- a/python/examples/pubsub/topic_subscriber.py
+++ b/python/examples/pubsub/topic_subscriber.py
@@ -57,10 +57,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :
diff --git a/python/examples/request-response/client.py b/python/examples/request-response/client.py
index 7bb4ee3462..8d40aca5bb 100755
--- a/python/examples/request-response/client.py
+++ b/python/examples/request-response/client.py
@@ -48,10 +48,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :
diff --git a/python/examples/request-response/server.py b/python/examples/request-response/server.py
index dbe4b88208..99b1431509 100755
--- a/python/examples/request-response/server.py
+++ b/python/examples/request-response/server.py
@@ -40,10 +40,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :
diff --git a/python/examples/xml-exchange/declare_queues.py b/python/examples/xml-exchange/declare_queues.py
index 8985c20cab..bd17da5013 100755
--- a/python/examples/xml-exchange/declare_queues.py
+++ b/python/examples/xml-exchange/declare_queues.py
@@ -28,10 +28,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :
diff --git a/python/examples/xml-exchange/listener.py b/python/examples/xml-exchange/listener.py
index f2f9105091..db12d57e3e 100755
--- a/python/examples/xml-exchange/listener.py
+++ b/python/examples/xml-exchange/listener.py
@@ -45,10 +45,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :
diff --git a/python/examples/xml-exchange/xml_consumer.py b/python/examples/xml-exchange/xml_consumer.py
index 047faec668..22973b2bd9 100755
--- a/python/examples/xml-exchange/xml_consumer.py
+++ b/python/examples/xml-exchange/xml_consumer.py
@@ -27,10 +27,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :
diff --git a/python/examples/xml-exchange/xml_producer.py b/python/examples/xml-exchange/xml_producer.py
index 435045b0fa..72c5bdb53a 100755
--- a/python/examples/xml-exchange/xml_producer.py
+++ b/python/examples/xml-exchange/xml_producer.py
@@ -45,10 +45,6 @@ password="guest"
# If an alternate host or port has been specified, use that instead
# (this is used in our unit tests)
-#
-# If AMQP_SPEC is defined, use it to locate the spec file instead of
-# looking for it in the default location.
-
if len(sys.argv) > 1 :
host=sys.argv[1]
if len(sys.argv) > 2 :