liveConsole 1.5.2__tar.gz → 1.5.3__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: liveConsole
3
- Version: 1.5.2
3
+ Version: 1.5.3
4
4
  Summary: An IDLE-like debugger to allow for real-time command injection for debugging and testing python code
5
5
  Author-email: Tzur Soffer <tzur.soffer@gmail.com>
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "liveConsole"
3
- version = "1.5.2"
3
+ version = "1.5.3"
4
4
  description = "An IDLE-like debugger to allow for real-time command injection for debugging and testing python code"
5
5
  authors = [{ name="Tzur Soffer", email="tzur.soffer@gmail.com" }]
6
6
  license = {text = "MIT"}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: liveConsole
3
- Version: 1.5.2
3
+ Version: 1.5.3
4
4
  Summary: An IDLE-like debugger to allow for real-time command injection for debugging and testing python code
5
5
  Author-email: Tzur Soffer <tzur.soffer@gmail.com>
6
6
  License: MIT
@@ -49,9 +49,9 @@ class InteractiveConsole(ctk.CTk):
49
49
  if callerFrame == None:
50
50
  callerFrame = inspect.currentframe().f_back
51
51
  if userGlobals is None:
52
- userGlobals = callerFrame.f_globals.copy()
52
+ userGlobals = callerFrame.f_globals
53
53
  if userLocals is None:
54
- userLocals = callerFrame.f_locals.copy()
54
+ userLocals = callerFrame.f_locals
55
55
 
56
56
  self.userGlobals = userGlobals
57
57
  self.userLocals = userLocals
File without changes
File without changes
File without changes
File without changes
File without changes