We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33e05ca commit 11d5dd9Copy full SHA for 11d5dd9
NEWS
@@ -2,6 +2,7 @@ Unreleased
2
==========
3
4
* Dropped support for Python 3.7 and earlier.
5
+* Fix Python 3.13 compat by adding missing attibute '_is_main_interpreter' https://github.com/eventlet/eventlet/pull/847
6
7
0.33.3
8
======
eventlet/green/thread.py
@@ -15,6 +15,8 @@
15
LockType = Lock
16
__threadcount = 0
17
18
+if hasattr(__thread, "_is_main_interpreter"):
19
+ _is_main_interpreter = __thread._is_main_interpreter
20
21
if six.PY3:
22
def _set_sentinel():
0 commit comments