From db6b23ee8621d22c2102b04b478fd4b1fc7b0123 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl> Date: Sun, 19 Jan 2020 16:56:22 +0100 Subject: [PATCH] v0.104 --- CHANGELOG.md | 1 + coolamqp/__init__.py | 2 +- coolamqp/attaches/declarer.py | 2 -- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eeb1c53..4d71327 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ * more extensive testing (CPython3.8, nightly) * fixed a bug wherein future_to_notify_on_dead was set_result multiple times * switched to nose2 for tests +* removed unnecessary print()s # v0.103: diff --git a/coolamqp/__init__.py b/coolamqp/__init__.py index 1d5dc5c..7091d9b 100644 --- a/coolamqp/__init__.py +++ b/coolamqp/__init__.py @@ -1,2 +1,2 @@ # coding=UTF-8 -__version__ = '0.104a1' +__version__ = '0.104' diff --git a/coolamqp/attaches/declarer.py b/coolamqp/attaches/declarer.py index d6883a5..21511a0 100644 --- a/coolamqp/attaches/declarer.py +++ b/coolamqp/attaches/declarer.py @@ -88,14 +88,12 @@ class DeleteQueue(Operation): def perform(self): queue = self.obj - print('bang') self.declarer.method_and_watch( QueueDelete(queue.name, False, False, False), (QueueDeleteOk, ChannelClose), self._callback) def _callback(self, payload): - print('got', payload) assert not self.done self.done = True if isinstance(payload, ChannelClose): -- GitLab