From 4a52a71956a8d46fcb7294ac71734504bb09bcc2 Mon Sep 17 00:00:00 2001 From: S. Solomon Darnell Date: Fri, 28 Mar 2025 21:52:21 -0500 Subject: two version of R2R are here --- .../python3.12/site-packages/future/moves/_dummy_thread.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .venv/lib/python3.12/site-packages/future/moves/_dummy_thread.py (limited to '.venv/lib/python3.12/site-packages/future/moves/_dummy_thread.py') diff --git a/.venv/lib/python3.12/site-packages/future/moves/_dummy_thread.py b/.venv/lib/python3.12/site-packages/future/moves/_dummy_thread.py new file mode 100644 index 00000000..6633f42e --- /dev/null +++ b/.venv/lib/python3.12/site-packages/future/moves/_dummy_thread.py @@ -0,0 +1,13 @@ +from __future__ import absolute_import +from future.utils import PY3, PY39_PLUS + + +if PY39_PLUS: + # _dummy_thread and dummy_threading modules were both deprecated in + # Python 3.7 and removed in Python 3.9 + from _thread import * +elif PY3: + from _dummy_thread import * +else: + __future_module__ = True + from dummy_thread import * -- cgit v1.2.3