New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

pystack

Package Overview
Dependencies
Maintainers
3
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pystack - pypi Package Compare versions

Comparing version
1.4.0
to
1.4.1
+1
-1
.bumpversion.cfg
[bumpversion]
current_version = 1.4.0
current_version = 1.4.1
commit = True

@@ -4,0 +4,0 @@ message =

@@ -11,2 +11,11 @@ .. note

pystack 1.4.1 (2024-10-04)
--------------------------
Features
~~~~~~~~
- Improve our ability to debug Python 3.13 processes when the ``_Py_DebugOffsets`` cannot be located by accounting for a structure layout change in CPython 3.13.0rc3 (the reversion of the incremental cyclic garbage collector). (#213)
pystack 1.4.0 (2024-09-11)

@@ -19,2 +28,3 @@ --------------------------

- Add support for Python 3.13 (#186)
- Add support for gzip compressed corefiles (#171)
- Add a new ``--version`` command line flag to show the version of pystack (#203)

@@ -21,0 +31,0 @@ - Support debugging free-threading (a.k.a. "nogil") Python 3.13 builds. Note that PyStack can't itself be run with ``python3.13t``, it can only attach to a ``python3.13t`` process or core file from another interpreter. (#206)

Metadata-Version: 2.1
Name: pystack
Version: 1.4.0
Version: 1.4.1
Summary: Analysis of the stack of remote python processes

@@ -5,0 +5,0 @@ Home-page: https://github.com/bloomberg/pystack

Metadata-Version: 2.1
Name: pystack
Version: 1.4.0
Version: 1.4.1
Summary: Analysis of the stack of remote python processes

@@ -5,0 +5,0 @@ Home-page: https://github.com/bloomberg/pystack

@@ -85,26 +85,2 @@ #pragma once

} // namespace Python3_8
namespace Python3_13 {
using Python3_8::gc_generation;
struct _gc_runtime_state
{
PyObject* trash_delete_later;
int trash_delete_nesting;
int enabled;
int debug;
struct gc_generation young;
struct gc_generation old[2];
struct gc_generation permanent_generation;
struct gc_generation_stats generation_stats[NUM_GENERATIONS];
int collecting;
PyObject* garbage;
PyObject* callbacks;
Py_ssize_t heap_size;
Py_ssize_t work_to_do;
int visited_space;
};
} // namespace Python3_13
} // namespace pystack

@@ -680,3 +680,3 @@ #include <stdexcept>

py_runtimev313<Python3_13::PyRuntimeState>(),
py_gc<Python3_13::_gc_runtime_state>(),
py_gc<Python3_8::_gc_runtime_state>(),
py_cframe<Python3_12::CFrame>(),

@@ -683,0 +683,0 @@ py_gilruntimestate<Python3_9::_gil_runtime_state>(),

@@ -1,1 +0,1 @@

__version__ = "1.4.0"
__version__ = "1.4.1"