shelltastic 0.4.2__tar.gz → 0.4.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.
Files changed (21) hide show
  1. {shelltastic-0.4.2 → shelltastic-0.4.3}/PKG-INFO +1 -1
  2. {shelltastic-0.4.2 → shelltastic-0.4.3}/pyproject.toml +1 -1
  3. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/display.py +4 -4
  4. {shelltastic-0.4.2 → shelltastic-0.4.3}/LICENSE +0 -0
  5. {shelltastic-0.4.2 → shelltastic-0.4.3}/README.md +0 -0
  6. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/__init__.py +0 -0
  7. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/backend/__init__.py +0 -0
  8. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/backend/base.py +0 -0
  9. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/backend/default/__init__.py +0 -0
  10. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/backend/default/common.py +0 -0
  11. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/backend/default/local.py +0 -0
  12. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/backend/default/remote.py +0 -0
  13. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/enum.py +0 -0
  14. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/exception.py +0 -0
  15. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/frontend/__init__.py +0 -0
  16. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/frontend/common.py +0 -0
  17. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/frontend/git.py +0 -0
  18. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/frontend/scp.py +0 -0
  19. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/frontend/shell.py +0 -0
  20. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/host.py +0 -0
  21. {shelltastic-0.4.2 → shelltastic-0.4.3}/src/shelltastic/result.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: shelltastic
3
- Version: 0.4.2
3
+ Version: 0.4.3
4
4
  Summary: A fantastic shell command runner for python
5
5
  Author: Bearmine
6
6
  License-Expression: MPL-2.0
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "shelltastic"
3
- version = "0.4.2"
3
+ version = "0.4.3"
4
4
  description = "A fantastic shell command runner for python"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -27,18 +27,18 @@ class DevNullDisplay(IODisplay):
27
27
 
28
28
  class StdoutDisplay(IODisplay):
29
29
  def printbytes(self, line: bytes):
30
- print(line.decode(), end="")
30
+ print(line.decode(), end="", flush=True)
31
31
 
32
32
  def printline(self, msg, *args):
33
- print(str(msg) % args)
33
+ print(str(msg) % args, flush=True)
34
34
 
35
35
 
36
36
  class StderrDisplay(IODisplay):
37
37
  def printbytes(self, line: bytes):
38
- print(line.decode(), end="", file=sys.stderr)
38
+ print(line.decode(), end="", file=sys.stderr, flush=True)
39
39
 
40
40
  def printline(self, msg, *args):
41
- print(str(msg) % args, file=sys.stderr)
41
+ print(str(msg) % args, file=sys.stderr, flush=True)
42
42
 
43
43
 
44
44
  class LogDisplay(IODisplay):
File without changes
File without changes