From 6d90e282c965e9c5bc31e1003d0d823a3a3ef98d Mon Sep 17 00:00:00 2001 From: Fabio Zadrozny Date: Sun, 27 Oct 2024 12:43:10 -0300 Subject: [PATCH] Release pydevd 3.2.0 --- _pydev_bundle/pydev_monkey.py | 4 ++++ build_tools/pydevd_release_process.txt | 2 +- pydevd.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/_pydev_bundle/pydev_monkey.py b/_pydev_bundle/pydev_monkey.py index 4c63c955..7c6eb577 100644 --- a/_pydev_bundle/pydev_monkey.py +++ b/_pydev_bundle/pydev_monkey.py @@ -1291,3 +1291,7 @@ def get_original_start_new_thread(threading_module): return threading_module._original_start_new_thread except: return threading_module.start_new_thread + + +a = lambda: None +print(a.__code__) diff --git a/build_tools/pydevd_release_process.txt b/build_tools/pydevd_release_process.txt index 0c79a4c7..64e756c2 100644 --- a/build_tools/pydevd_release_process.txt +++ b/build_tools/pydevd_release_process.txt @@ -7,7 +7,7 @@ Update cython-generated files (must update cython and then run build_tools/build Create tag: ----------- -git tag pydev_debugger_3_1_0 -a -m "PyDev.Debugger 3.1.0" +git tag pydev_debugger_3_2_0 -a -m "PyDev.Debugger 3.2.0" git push --tags diff --git a/pydevd.py b/pydevd.py index 2e187bd7..960caea4 100644 --- a/pydevd.py +++ b/pydevd.py @@ -173,7 +173,7 @@ if USE_CUSTOM_SYS_CURRENT_FRAMES_MAP: from _pydevd_bundle.pydevd_constants import constructed_tid_to_last_frame -__version_info__ = (3, 1, 0) +__version_info__ = (3, 2, 0) __version_info_str__ = [] for v in __version_info__: __version_info_str__.append(str(v))