rloop 0.1.2__tar.gz → 0.1.3__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 (34) hide show
  1. {rloop-0.1.2 → rloop-0.1.3}/Cargo.lock +1 -1
  2. {rloop-0.1.2 → rloop-0.1.3}/Cargo.toml +1 -1
  3. {rloop-0.1.2 → rloop-0.1.3}/PKG-INFO +1 -1
  4. {rloop-0.1.2 → rloop-0.1.3}/rloop/server.py +1 -1
  5. {rloop-0.1.2 → rloop-0.1.3}/LICENSE +0 -0
  6. {rloop-0.1.2 → rloop-0.1.3}/README.md +0 -0
  7. {rloop-0.1.2 → rloop-0.1.3}/pyproject.toml +0 -0
  8. {rloop-0.1.2 → rloop-0.1.3}/rloop/__init__.py +0 -0
  9. {rloop-0.1.2 → rloop-0.1.3}/rloop/_compat.py +0 -0
  10. {rloop-0.1.2 → rloop-0.1.3}/rloop/_rloop.pyi +0 -0
  11. {rloop-0.1.2 → rloop-0.1.3}/rloop/exc.py +0 -0
  12. {rloop-0.1.2 → rloop-0.1.3}/rloop/futures.py +0 -0
  13. {rloop-0.1.2 → rloop-0.1.3}/rloop/loop.py +0 -0
  14. {rloop-0.1.2 → rloop-0.1.3}/rloop/subprocess.py +0 -0
  15. {rloop-0.1.2 → rloop-0.1.3}/rloop/transports.py +0 -0
  16. {rloop-0.1.2 → rloop-0.1.3}/rloop/utils.py +0 -0
  17. {rloop-0.1.2 → rloop-0.1.3}/src/event_loop.rs +0 -0
  18. {rloop-0.1.2 → rloop-0.1.3}/src/handles.rs +0 -0
  19. {rloop-0.1.2 → rloop-0.1.3}/src/io.rs +0 -0
  20. {rloop-0.1.2 → rloop-0.1.3}/src/lib.rs +0 -0
  21. {rloop-0.1.2 → rloop-0.1.3}/src/log.rs +0 -0
  22. {rloop-0.1.2 → rloop-0.1.3}/src/py.rs +0 -0
  23. {rloop-0.1.2 → rloop-0.1.3}/src/server.rs +0 -0
  24. {rloop-0.1.2 → rloop-0.1.3}/src/sock.rs +0 -0
  25. {rloop-0.1.2 → rloop-0.1.3}/src/tcp.rs +0 -0
  26. {rloop-0.1.2 → rloop-0.1.3}/src/time.rs +0 -0
  27. {rloop-0.1.2 → rloop-0.1.3}/src/utils.rs +0 -0
  28. {rloop-0.1.2 → rloop-0.1.3}/tests/conftest.py +0 -0
  29. {rloop-0.1.2 → rloop-0.1.3}/tests/tcp/__init__.py +0 -0
  30. {rloop-0.1.2 → rloop-0.1.3}/tests/tcp/test_tcp_conn.py +0 -0
  31. {rloop-0.1.2 → rloop-0.1.3}/tests/tcp/test_tcp_server.py +0 -0
  32. {rloop-0.1.2 → rloop-0.1.3}/tests/test_handles.py +0 -0
  33. {rloop-0.1.2 → rloop-0.1.3}/tests/test_sockets.py +0 -0
  34. {rloop-0.1.2 → rloop-0.1.3}/tests/udp/test_udp.py +0 -0
@@ -189,7 +189,7 @@ dependencies = [
189
189
 
190
190
  [[package]]
191
191
  name = "rloop"
192
- version = "0.1.2"
192
+ version = "0.1.3"
193
193
  dependencies = [
194
194
  "anyhow",
195
195
  "libc",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rloop"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "An asyncio event loop implemented in Rust"
5
5
  authors = ["Giovanni Barillari <g@baro.dev>"]
6
6
  license = "BSD-3-Clause"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rloop
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Classifier: Development Status :: 3 - Alpha
5
5
  Classifier: Intended Audience :: Developers
6
6
  Classifier: License :: OSI Approved :: BSD License
@@ -27,7 +27,7 @@ class Server:
27
27
  # raise RuntimeError(f'server {self!r} is closed')
28
28
 
29
29
  self._inner._start_serving()
30
- self._sff = self._loop.create_future()
30
+ self._sff = self._inner._loop.create_future()
31
31
 
32
32
  try:
33
33
  await self._sff
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
File without changes
File without changes