portal 3.1.5__tar.gz → 3.1.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. {portal-3.1.5/portal.egg-info → portal-3.1.6}/PKG-INFO +1 -1
  2. {portal-3.1.5 → portal-3.1.6}/portal/__init__.py +1 -1
  3. {portal-3.1.5 → portal-3.1.6}/portal/client.py +6 -6
  4. {portal-3.1.5 → portal-3.1.6/portal.egg-info}/PKG-INFO +1 -1
  5. {portal-3.1.5 → portal-3.1.6}/LICENSE +0 -0
  6. {portal-3.1.5 → portal-3.1.6}/MANIFEST.in +0 -0
  7. {portal-3.1.5 → portal-3.1.6}/README.md +0 -0
  8. {portal-3.1.5 → portal-3.1.6}/portal/batching.py +0 -0
  9. {portal-3.1.5 → portal-3.1.6}/portal/buffers.py +0 -0
  10. {portal-3.1.5 → portal-3.1.6}/portal/client_socket.py +0 -0
  11. {portal-3.1.5 → portal-3.1.6}/portal/contextlib.py +0 -0
  12. {portal-3.1.5 → portal-3.1.6}/portal/packlib.py +0 -0
  13. {portal-3.1.5 → portal-3.1.6}/portal/poollib.py +0 -0
  14. {portal-3.1.5 → portal-3.1.6}/portal/process.py +0 -0
  15. {portal-3.1.5 → portal-3.1.6}/portal/server.py +0 -0
  16. {portal-3.1.5 → portal-3.1.6}/portal/server_socket.py +0 -0
  17. {portal-3.1.5 → portal-3.1.6}/portal/sharray.py +0 -0
  18. {portal-3.1.5 → portal-3.1.6}/portal/thread.py +0 -0
  19. {portal-3.1.5 → portal-3.1.6}/portal/utils.py +0 -0
  20. {portal-3.1.5 → portal-3.1.6}/portal.egg-info/SOURCES.txt +0 -0
  21. {portal-3.1.5 → portal-3.1.6}/portal.egg-info/dependency_links.txt +0 -0
  22. {portal-3.1.5 → portal-3.1.6}/portal.egg-info/requires.txt +0 -0
  23. {portal-3.1.5 → portal-3.1.6}/portal.egg-info/top_level.txt +0 -0
  24. {portal-3.1.5 → portal-3.1.6}/pyproject.toml +0 -0
  25. {portal-3.1.5 → portal-3.1.6}/requirements.txt +0 -0
  26. {portal-3.1.5 → portal-3.1.6}/setup.cfg +0 -0
  27. {portal-3.1.5 → portal-3.1.6}/setup.py +0 -0
  28. {portal-3.1.5 → portal-3.1.6}/tests/test_batching.py +0 -0
  29. {portal-3.1.5 → portal-3.1.6}/tests/test_client.py +0 -0
  30. {portal-3.1.5 → portal-3.1.6}/tests/test_errfile.py +0 -0
  31. {portal-3.1.5 → portal-3.1.6}/tests/test_pack.py +0 -0
  32. {portal-3.1.5 → portal-3.1.6}/tests/test_process.py +0 -0
  33. {portal-3.1.5 → portal-3.1.6}/tests/test_server.py +0 -0
  34. {portal-3.1.5 → portal-3.1.6}/tests/test_socket.py +0 -0
  35. {portal-3.1.5 → portal-3.1.6}/tests/test_thread.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: portal
3
- Version: 3.1.5
3
+ Version: 3.1.6
4
4
  Summary: Fast and reliable distributed systems in Python
5
5
  Home-page: http://github.com/danijar/portal
6
6
  Author: Danijar Hafner
@@ -1,4 +1,4 @@
1
- __version__ = '3.1.5'
1
+ __version__ = '3.1.6'
2
2
 
3
3
  import multiprocessing as mp
4
4
  try:
@@ -98,17 +98,17 @@ class Client:
98
98
  reqnum = bytes(data[:8])
99
99
  status = int.from_bytes(data[8:16], 'little', signed=False)
100
100
  future = self.futures.pop(reqnum, None)
101
- assert future, (
102
- f'Unexpected request number: {reqnum}',
103
- sorted(self.futures.keys()))
104
- if status == 0:
101
+ if not future:
102
+ existing = sorted(self.futures.keys())
103
+ print(f'Unexpected request number: {reqnum}', existing)
104
+ elif status == 0:
105
105
  data = packlib.unpack(data[16:])
106
106
  future.set_result(data)
107
+ with self.cond: self.cond.notify_all()
107
108
  else:
108
109
  message = bytes(data[16:]).decode('utf-8')
109
110
  self._seterr(future, RuntimeError(message))
110
- with self.cond:
111
- self.cond.notify_all()
111
+ with self.cond: self.cond.notify_all()
112
112
  self.socket.recv()
113
113
 
114
114
  def _disc(self):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: portal
3
- Version: 3.1.5
3
+ Version: 3.1.6
4
4
  Summary: Fast and reliable distributed systems in Python
5
5
  Home-page: http://github.com/danijar/portal
6
6
  Author: Danijar Hafner
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes