benjaminws / python-stomp (http://just-another.net/python-stomp)

Implementation of the STOMP protocol in Python.

Clone this repository (size: 147.3 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/benjaminws/python-stomp/
commit 119: ba6049efa4c9
parent 118: a402c861896d
branch: default
Quiet sphinx warnings, add .static
Benjamin Smith / benjaminws
2 months ago

Changed (Δ0 bytes):

raw changeset »

docs/reference/index.rst (1 lines added, 1 lines removed)

stompy/stomp.py (1 lines added, 1 lines removed)

Up to file-list docs/reference/index.rst:

6
6
:Date: |today|
7
7
8
8
.. toctree::
9
    :maxdepth: 3
9
    :maxdepth: 4
10
10
  
11
11
    stompy.stomp
12
12
    stompy.frame 

Up to file-list stompy/stomp.py:

@@ -101,7 +101,7 @@ class Stomp(object):
101
101
        In the case of ActiveMQ, you could do this:
102
102
103
103
            >>> stomp.subscribe({'destination':'/queue/foo',
104
        ...                      'ack':'client'})
104
            ...                  'ack':'client'})
105
105
        """
106
106
        destination = conf["destination"]
107
107
        self._send_command("SUBSCRIBE", conf)