portal 3.1.10__tar.gz → 3.1.11__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.10/portal.egg-info → portal-3.1.11}/PKG-INFO +1 -1
  2. {portal-3.1.10 → portal-3.1.11}/portal/__init__.py +1 -1
  3. {portal-3.1.10 → portal-3.1.11}/portal/batching.py +1 -0
  4. {portal-3.1.10 → portal-3.1.11}/portal/server_socket.py +1 -0
  5. {portal-3.1.10 → portal-3.1.11}/portal/utils.py +2 -2
  6. {portal-3.1.10 → portal-3.1.11/portal.egg-info}/PKG-INFO +1 -1
  7. {portal-3.1.10 → portal-3.1.11}/LICENSE +0 -0
  8. {portal-3.1.10 → portal-3.1.11}/MANIFEST.in +0 -0
  9. {portal-3.1.10 → portal-3.1.11}/README.md +0 -0
  10. {portal-3.1.10 → portal-3.1.11}/portal/buffers.py +0 -0
  11. {portal-3.1.10 → portal-3.1.11}/portal/client.py +0 -0
  12. {portal-3.1.10 → portal-3.1.11}/portal/client_socket.py +0 -0
  13. {portal-3.1.10 → portal-3.1.11}/portal/contextlib.py +0 -0
  14. {portal-3.1.10 → portal-3.1.11}/portal/packlib.py +0 -0
  15. {portal-3.1.10 → portal-3.1.11}/portal/poollib.py +0 -0
  16. {portal-3.1.10 → portal-3.1.11}/portal/process.py +0 -0
  17. {portal-3.1.10 → portal-3.1.11}/portal/server.py +0 -0
  18. {portal-3.1.10 → portal-3.1.11}/portal/sharray.py +0 -0
  19. {portal-3.1.10 → portal-3.1.11}/portal/thread.py +0 -0
  20. {portal-3.1.10 → portal-3.1.11}/portal.egg-info/SOURCES.txt +0 -0
  21. {portal-3.1.10 → portal-3.1.11}/portal.egg-info/dependency_links.txt +0 -0
  22. {portal-3.1.10 → portal-3.1.11}/portal.egg-info/requires.txt +0 -0
  23. {portal-3.1.10 → portal-3.1.11}/portal.egg-info/top_level.txt +0 -0
  24. {portal-3.1.10 → portal-3.1.11}/pyproject.toml +0 -0
  25. {portal-3.1.10 → portal-3.1.11}/requirements.txt +0 -0
  26. {portal-3.1.10 → portal-3.1.11}/setup.cfg +0 -0
  27. {portal-3.1.10 → portal-3.1.11}/setup.py +0 -0
  28. {portal-3.1.10 → portal-3.1.11}/tests/test_batching.py +0 -0
  29. {portal-3.1.10 → portal-3.1.11}/tests/test_client.py +0 -0
  30. {portal-3.1.10 → portal-3.1.11}/tests/test_errfile.py +0 -0
  31. {portal-3.1.10 → portal-3.1.11}/tests/test_pack.py +0 -0
  32. {portal-3.1.10 → portal-3.1.11}/tests/test_process.py +0 -0
  33. {portal-3.1.10 → portal-3.1.11}/tests/test_server.py +0 -0
  34. {portal-3.1.10 → portal-3.1.11}/tests/test_socket.py +0 -0
  35. {portal-3.1.10 → portal-3.1.11}/tests/test_thread.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: portal
3
- Version: 3.1.10
3
+ Version: 3.1.11
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.10'
1
+ __version__ = '3.1.11'
2
2
 
3
3
  import multiprocessing as mp
4
4
  try:
@@ -19,6 +19,7 @@ class BatchServer:
19
19
  self, port, name='Server', workers=1, errors=True,
20
20
  process=True, shmem=False, **kwargs):
21
21
  inner_port = utils.free_port()
22
+ assert port != inner_port, (port, inner_port)
22
23
  self.name = name
23
24
  self.server = server.Server(inner_port, name, workers, errors, **kwargs)
24
25
  if process:
@@ -48,6 +48,7 @@ class ServerSocket:
48
48
  self.addr = (self.options.host, port)
49
49
  self.sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
50
50
  # self.sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
51
+ self._log(f'Binding to {self.addr[0]}:{self.addr[1]}')
51
52
  self.sock.bind(self.addr)
52
53
  self.sock.setblocking(False)
53
54
  self.sock.listen()
@@ -78,13 +78,13 @@ def kill_procs(procs, timeout=3):
78
78
  if p.status() != psutil.STATUS_ZOMBIE else None), procs)
79
79
 
80
80
 
81
- def free_port():
81
+ def free_port(low=10000, high=50000):
82
82
  # Return a port that is currently free. This function is not thread or
83
83
  # process safe, because there is no way to guarantee that the port will still
84
84
  # be free at the time it will be used.
85
85
  rng = np.random.default_rng()
86
86
  while True:
87
- port = int(rng.integers(2000, 7000))
87
+ port = int(rng.integers(low, high))
88
88
  with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
89
89
  if s.connect_ex(('', port)):
90
90
  return port
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: portal
3
- Version: 3.1.10
3
+ Version: 3.1.11
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