liveConsole 1.3.1__tar.gz → 1.3.2__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.
- {liveconsole-1.3.1/src/liveConsole.egg-info → liveconsole-1.3.2}/PKG-INFO +2 -2
- {liveconsole-1.3.1 → liveconsole-1.3.2}/README.md +2 -2
- {liveconsole-1.3.1 → liveconsole-1.3.2}/pyproject.toml +1 -1
- {liveconsole-1.3.1 → liveconsole-1.3.2/src/liveConsole.egg-info}/PKG-INFO +2 -2
- {liveconsole-1.3.1 → liveconsole-1.3.2}/src/liveConsole.py +2 -2
- {liveconsole-1.3.1 → liveconsole-1.3.2}/LICENSE +0 -0
- {liveconsole-1.3.1 → liveconsole-1.3.2}/setup.cfg +0 -0
- {liveconsole-1.3.1 → liveconsole-1.3.2}/src/__init__.py +0 -0
- {liveconsole-1.3.1 → liveconsole-1.3.2}/src/liveConsole.egg-info/SOURCES.txt +0 -0
- {liveconsole-1.3.1 → liveconsole-1.3.2}/src/liveConsole.egg-info/dependency_links.txt +0 -0
- {liveconsole-1.3.1 → liveconsole-1.3.2}/src/liveConsole.egg-info/requires.txt +0 -0
- {liveconsole-1.3.1 → liveconsole-1.3.2}/src/liveConsole.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: liveConsole
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.2
|
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
|
@@ -31,7 +31,7 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
|
|
31
31
|
|
32
32
|
## Installation
|
33
33
|
|
34
|
-
`pip install
|
34
|
+
`pip install liveConsole`
|
35
35
|
|
36
36
|
|
37
37
|
## Features
|
@@ -18,7 +18,7 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
|
|
18
18
|
|
19
19
|
## Installation
|
20
20
|
|
21
|
-
`pip install
|
21
|
+
`pip install liveConsole`
|
22
22
|
|
23
23
|
|
24
24
|
## Features
|
@@ -103,4 +103,4 @@ InteractiveConsole().probe()
|
|
103
103
|
|
104
104
|
## License
|
105
105
|
|
106
|
-
MIT License – free to use, modify, and distribute.
|
106
|
+
MIT License – free to use, modify, and distribute.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "liveConsole"
|
3
|
-
version = "1.3.
|
3
|
+
version = "1.3.2"
|
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.3.
|
3
|
+
Version: 1.3.2
|
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
|
@@ -31,7 +31,7 @@ A fully-featured, **live Python console GUI** built with **CustomTkinter** and *
|
|
31
31
|
|
32
32
|
## Installation
|
33
33
|
|
34
|
-
`pip install
|
34
|
+
`pip install liveConsole`
|
35
35
|
|
36
36
|
|
37
37
|
## Features
|
@@ -64,8 +64,8 @@ class CodeSuggestionManager:
|
|
64
64
|
base_expr = '.'.join(currentWord.split('.')[:-1])
|
65
65
|
obj = eval(base_expr, self.userLocals, self.userGlobals)
|
66
66
|
suggestions = dir(obj)
|
67
|
-
except
|
68
|
-
|
67
|
+
except:
|
68
|
+
pass
|
69
69
|
for char in "([{,.":
|
70
70
|
if char in currentWord:
|
71
71
|
currentWord = currentWord.split(char)[-1]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|