robotcode-repl 1.0.3__tar.gz → 1.2.0__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.
- {robotcode_repl-1.0.3 → robotcode_repl-1.2.0}/PKG-INFO +2 -2
- {robotcode_repl-1.0.3 → robotcode_repl-1.2.0}/pyproject.toml +1 -1
- robotcode_repl-1.2.0/src/robotcode/repl/__version__.py +1 -0
- {robotcode_repl-1.0.3 → robotcode_repl-1.2.0}/src/robotcode/repl/console_interpreter.py +3 -2
- robotcode_repl-1.0.3/src/robotcode/repl/__version__.py +0 -1
- {robotcode_repl-1.0.3 → robotcode_repl-1.2.0}/.gitignore +0 -0
- {robotcode_repl-1.0.3 → robotcode_repl-1.2.0}/LICENSE.txt +0 -0
- {robotcode_repl-1.0.3 → robotcode_repl-1.2.0}/README.md +0 -0
- {robotcode_repl-1.0.3 → robotcode_repl-1.2.0}/src/robotcode/repl/Repl/__init__.py +0 -0
- {robotcode_repl-1.0.3 → robotcode_repl-1.2.0}/src/robotcode/repl/Repl/repl.py +0 -0
- {robotcode_repl-1.0.3 → robotcode_repl-1.2.0}/src/robotcode/repl/__init__.py +0 -0
- {robotcode_repl-1.0.3 → robotcode_repl-1.2.0}/src/robotcode/repl/base_interpreter.py +0 -0
- {robotcode_repl-1.0.3 → robotcode_repl-1.2.0}/src/robotcode/repl/cli.py +0 -0
- {robotcode_repl-1.0.3 → robotcode_repl-1.2.0}/src/robotcode/repl/hooks.py +0 -0
- {robotcode_repl-1.0.3 → robotcode_repl-1.2.0}/src/robotcode/repl/py.typed +0 -0
- {robotcode_repl-1.0.3 → robotcode_repl-1.2.0}/src/robotcode/repl/run.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotcode-repl
|
|
3
|
-
Version: 1.0
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: RobotCode REPL for Robot Framework
|
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
|
6
6
|
Project-URL: Donate, https://opencollective.com/robotcode
|
|
@@ -25,7 +25,7 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
|
25
25
|
Classifier: Topic :: Utilities
|
|
26
26
|
Classifier: Typing :: Typed
|
|
27
27
|
Requires-Python: >=3.8
|
|
28
|
-
Requires-Dist: robotcode-runner==1.0
|
|
28
|
+
Requires-Dist: robotcode-runner==1.2.0
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
30
30
|
|
|
31
31
|
# robotcode-repl
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.2.0"
|
|
@@ -110,7 +110,7 @@ class ConsoleInterpreter(BaseInterpreter):
|
|
|
110
110
|
if is_true(html):
|
|
111
111
|
message = f"*HTML*{message}"
|
|
112
112
|
|
|
113
|
-
self.app.echo(f"{' '*self.indent}[ {level} ] {message}", file=sys.__stdout__ if std_err else sys.__stderr__)
|
|
113
|
+
self.app.echo(f"{' ' * self.indent}[ {level} ] {message}", file=sys.__stdout__ if std_err else sys.__stderr__)
|
|
114
114
|
|
|
115
115
|
def message(
|
|
116
116
|
self, message: str, level: str, html: Union[str, bool] = False, timestamp: Union[datetime, str, None] = None
|
|
@@ -126,7 +126,8 @@ class ConsoleInterpreter(BaseInterpreter):
|
|
|
126
126
|
return
|
|
127
127
|
|
|
128
128
|
self.app.echo(
|
|
129
|
-
f"{' '*self.indent}KEYWORD {result.libname}.{result.kwname} {' '.join(result.args)}",
|
|
129
|
+
f"{' ' * self.indent}KEYWORD {result.libname}.{result.kwname} {' '.join(result.args)}",
|
|
130
|
+
file=sys.__stdout__,
|
|
130
131
|
)
|
|
131
132
|
self.indent += 1
|
|
132
133
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.0.3"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|