Skip to content

Commit

Permalink
Updated CHANGES
Browse files Browse the repository at this point in the history
  • Loading branch information
superbobry committed Sep 15, 2011
1 parent 7aba7fb commit 3f85591
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGES
Expand Up @@ -3,7 +3,16 @@ pyxs Changelog

Here you can see the full list of changes between each pyxs release.

Version 0.4
-----------

- Added `default` argument to `Client.read()`, which acts similar to
`dict.get()`.

Version 0.3
-----------

Released on September 12ve 2011

- Moved all PUBSUB functionality into a separate `Monitor` class, which
uses a *separate* connection. That way, we'll never have to worry
Expand Down
2 changes: 1 addition & 1 deletion pyxs/client.py
Expand Up @@ -138,7 +138,7 @@ def execute_command(self, op, *args, **kwargs):
elif packet.op is not op:
raise UnexpectedPacket(packet)
# Making sure sent and recieved packets are within the
# same transaction -- not relevant for # `XenBusConnection`,
# same transaction -- not relevant for `XenBusConnection`,
# for some reason it sometimes returns *random* values
# of tx_id and rq_id.
elif (not isinstance(self.connection, XenBusConnection) and
Expand Down

0 comments on commit 3f85591

Please sign in to comment.