stacktrace 1.0.0__cp39-cp39-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
stacktrace/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# python_pkg/stacktrace/__init__.py
|
|
2
|
+
"""
|
|
3
|
+
stacktrace — Low-level Windows Stack Trace Engine
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
from stacktrace._core import (
|
|
7
|
+
trace,
|
|
8
|
+
get_modules,
|
|
9
|
+
is_traceable,
|
|
10
|
+
Frame,
|
|
11
|
+
TraceResult,
|
|
12
|
+
)
|
|
13
|
+
|
|
14
|
+
__all__ = ["trace", "get_modules", "is_traceable", "Frame", "TraceResult"]
|
|
15
|
+
__version__ = "1.0.0"
|
|
Binary file
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: stacktrace
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Low-level Windows Stack Trace Engine
|
|
5
|
+
Author: Raul Mansurov
|
|
6
|
+
Author-email: Raul Mansurov <mansurovraul1@gmail.com>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/Raulisr00t/StackTrace
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Software Development :: Debuggers
|
|
14
|
+
Requires-Python: >=3.8
|
|
15
|
+
Requires-Dist: pybind11>=2.10.0
|
|
16
|
+
Dynamic: author
|
|
17
|
+
Dynamic: requires-python
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
stacktrace/__init__.py,sha256=YQZ41wdKRV8RSSvp9W8tn0_KFMk6GP1oVyaiV3FkT4M,315
|
|
2
|
+
stacktrace/_core.cp39-win_amd64.pyd,sha256=G6E2KBtsy5eJUwx-FSgAjwlp2tAZ7FqP1IJqXaU4IXY,202752
|
|
3
|
+
stacktrace-1.0.0.dist-info/METADATA,sha256=xaiZlfmZixIyQNJAlj4MdYmgWXEjmlu8tTUJMG4r_A8,620
|
|
4
|
+
stacktrace-1.0.0.dist-info/WHEEL,sha256=zuNlb9Um05hyCt8XRmFaVi795Ee7Bc9lOiOIpwTM7Gs,99
|
|
5
|
+
stacktrace-1.0.0.dist-info/top_level.txt,sha256=ANWl4YtGoJMMFd3n5MQN65NNmXWs4jz2blTxYD9Ah7o,11
|
|
6
|
+
stacktrace-1.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
stacktrace
|