Bump greenlet to 3.0.* (#10833)

This commit is contained in:
David Salvisberg
2023-10-04 08:24:55 +02:00
committed by GitHub
parent d60e66712a
commit 2e62753e2f
2 changed files with 5 additions and 1 deletions

View File

@@ -1,2 +1,2 @@
version = "2.0.*"
version = "3.0.*"
upstream_repository = "https://github.com/python-greenlet/greenlet"

View File

@@ -63,6 +63,10 @@ class greenlet:
@staticmethod
def settrace(__callback: _TraceCallback | None) -> _TraceCallback | None: ...
class UnswitchableGreenlet(greenlet): # undocumented
force_switch_error: bool
force_slp_switch_error: bool
def enable_optional_cleanup(__enabled: bool) -> None: ...
def get_clocks_used_doing_optional_cleanup() -> int: ...
def get_pending_cleanup_count() -> int: ...