kenenet 0.7.3__py3-none-any.whl → 0.7.4__py3-none-any.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.
- kenenet/__init__.py +2 -2
- {kenenet-0.7.3.dist-info → kenenet-0.7.4.dist-info}/METADATA +1 -1
- kenenet-0.7.4.dist-info/RECORD +5 -0
- kenenet-0.7.3.dist-info/RECORD +0 -5
- {kenenet-0.7.3.dist-info → kenenet-0.7.4.dist-info}/WHEEL +0 -0
- {kenenet-0.7.3.dist-info → kenenet-0.7.4.dist-info}/top_level.txt +0 -0
kenenet/__init__.py
CHANGED
@@ -87,7 +87,7 @@ class _VariableTracker:
|
|
87
87
|
self.global_vars = {name: value for name, value in module.__dict__.items() if self._should_track(name)}
|
88
88
|
sys.settrace(_track_frame)
|
89
89
|
self.active = True
|
90
|
-
frame = inspect.currentframe()
|
90
|
+
frame = inspect.currentframe().f_back.f_back
|
91
91
|
lineno = frame.f_lineno
|
92
92
|
quick_print(f"Started debugging", lineno)
|
93
93
|
|
@@ -97,7 +97,7 @@ class _VariableTracker:
|
|
97
97
|
self.frame_locals.clear()
|
98
98
|
self.global_vars.clear()
|
99
99
|
self.active = False
|
100
|
-
frame = inspect.currentframe()
|
100
|
+
frame = inspect.currentframe().f_back.f_back.f_back
|
101
101
|
lineno = frame.f_lineno.fba
|
102
102
|
quick_print(f"Stopped debugging", lineno)
|
103
103
|
|
@@ -0,0 +1,5 @@
|
|
1
|
+
kenenet/__init__.py,sha256=htHEkohM6xbwRPS91TLqZcrKM8XpXN2MImRsM3F8MHU,8583
|
2
|
+
kenenet-0.7.4.dist-info/METADATA,sha256=V9KWr3M3coeuisw2ekcdY11-uh7ZILqozrrp5P1Micg,633
|
3
|
+
kenenet-0.7.4.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
4
|
+
kenenet-0.7.4.dist-info/top_level.txt,sha256=gUsWXLrM0jF4b4nbYJZdksdFewIx_F3xOF-zER8fMuQ,8
|
5
|
+
kenenet-0.7.4.dist-info/RECORD,,
|
kenenet-0.7.3.dist-info/RECORD
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
kenenet/__init__.py,sha256=xDlULOyme_-64S_8mLY_nO3epopLDiVZpQ1LsATyxHc,8548
|
2
|
-
kenenet-0.7.3.dist-info/METADATA,sha256=tui1DqkaZX23qAzXDURiFhl80UNDBZZyEF3LUHcQ9Jk,633
|
3
|
-
kenenet-0.7.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
4
|
-
kenenet-0.7.3.dist-info/top_level.txt,sha256=gUsWXLrM0jF4b4nbYJZdksdFewIx_F3xOF-zER8fMuQ,8
|
5
|
-
kenenet-0.7.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|