mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-30 10:38:07 -07:00
dev-python/nnpy: bump to 1.4.1
Package-Manager: Portage-2.3.6, Repoman-2.3.2
This commit is contained in:
19
dev-python/nnpy/files/py3.patch
Normal file
19
dev-python/nnpy/files/py3.patch
Normal file
@@ -0,0 +1,19 @@
|
||||
commit 98ee46a4034ca94d6123b854e79f1dc3f35fff4a
|
||||
Author: Alexis Ballier <aballier@gentoo.org>
|
||||
Date: Sat Jun 3 19:55:10 2017 +0200
|
||||
|
||||
Fix tests under python3.
|
||||
|
||||
diff --git a/nnpy/tests.py b/nnpy/tests.py
|
||||
index ba2a3fe..7f9f6e0 100644
|
||||
--- a/nnpy/tests.py
|
||||
+++ b/nnpy/tests.py
|
||||
@@ -17,7 +17,7 @@ class Tests(unittest.TestCase):
|
||||
poller = nnpy.PollSet((sub, nnpy.POLLIN))
|
||||
self.assertEqual(len(poller.poll()), 1)
|
||||
self.assertEqual(poller.poll()[0], 1)
|
||||
- self.assertEqual(sub.recv(), 'FLUB')
|
||||
+ self.assertEqual(sub.recv().decode(), 'FLUB')
|
||||
self.assertEqual(pub.get_statistic(nnpy.STAT_MESSAGES_SENT), 1)
|
||||
pub.close()
|
||||
sub.shutdown(sub_conn)
|
||||
Reference in New Issue
Block a user