multiSSH3 5.92__tar.gz → 5.93__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.
Potentially problematic release.
This version of multiSSH3 might be problematic. Click here for more details.
- {multissh3-5.92 → multissh3-5.93}/PKG-INFO +1 -1
- {multissh3-5.92 → multissh3-5.93}/README.md +0 -0
- {multissh3-5.92 → multissh3-5.93}/multiSSH3.egg-info/PKG-INFO +1 -1
- {multissh3-5.92 → multissh3-5.93}/multiSSH3.py +2 -3
- {multissh3-5.92 → multissh3-5.93}/setup.py +0 -0
- {multissh3-5.92 → multissh3-5.93}/test/test.py +0 -0
- {multissh3-5.92 → multissh3-5.93}/test/testCurses.py +0 -0
- {multissh3-5.92 → multissh3-5.93}/test/testCursesOld.py +0 -0
- {multissh3-5.92 → multissh3-5.93}/test/testPerfCompact.py +0 -0
- {multissh3-5.92 → multissh3-5.93}/test/testPerfExpand.py +0 -0
- {multissh3-5.92 → multissh3-5.93}/multiSSH3.egg-info/SOURCES.txt +0 -0
- {multissh3-5.92 → multissh3-5.93}/multiSSH3.egg-info/dependency_links.txt +0 -0
- {multissh3-5.92 → multissh3-5.93}/multiSSH3.egg-info/entry_points.txt +0 -0
- {multissh3-5.92 → multissh3-5.93}/multiSSH3.egg-info/requires.txt +0 -0
- {multissh3-5.92 → multissh3-5.93}/multiSSH3.egg-info/top_level.txt +0 -0
- {multissh3-5.92 → multissh3-5.93}/setup.cfg +0 -0
|
File without changes
|
|
@@ -47,7 +47,6 @@ try:
|
|
|
47
47
|
except ImportError:
|
|
48
48
|
pass
|
|
49
49
|
|
|
50
|
-
|
|
51
50
|
try:
|
|
52
51
|
# Check if functiools.cache is available
|
|
53
52
|
# cache_decorator = functools.cache
|
|
@@ -85,7 +84,7 @@ except Exception:
|
|
|
85
84
|
print('Warning: functools.lru_cache is not available, multiSSH3 will run slower without cache.',file=sys.stderr)
|
|
86
85
|
def cache_decorator(func):
|
|
87
86
|
return func
|
|
88
|
-
version = '5.
|
|
87
|
+
version = '5.93'
|
|
89
88
|
VERSION = version
|
|
90
89
|
__version__ = version
|
|
91
90
|
COMMIT_DATE = '2025-10-20'
|
|
@@ -3688,7 +3687,7 @@ def get_parser():
|
|
|
3688
3687
|
parser.add_argument('-hf','--history_file', type=str, help=f'The file to store the history. (default: {DEFAULT_HISTORY_FILE})', default=DEFAULT_HISTORY_FILE)
|
|
3689
3688
|
parser.add_argument('--script', action='store_true', help='Run the command in script mode, short for -SCRIPT or --no_watch --skip_unreachable --no_env --no_history --greppable --error_only')
|
|
3690
3689
|
parser.add_argument('-e','--encoding', type=str, help=f'The encoding to use for the output. (default: {DEFAULT_ENCODING})', default=DEFAULT_ENCODING)
|
|
3691
|
-
parser.add_argument('-
|
|
3690
|
+
parser.add_argument('-dt','--diff_display_threshold', type=float, help=f'The threshold of lines to display the diff when files differ. {{0-1}} Set to 0 to always display the diff. Set to 1 to disable diff. (Only merge same) (default: {DEFAULT_DIFF_DISPLAY_THRESHOLD})', default=DEFAULT_DIFF_DISPLAY_THRESHOLD)
|
|
3692
3691
|
parser.add_argument('--force_truecolor', action='store_true', help=f'Force truecolor output even when not in a truecolor terminal. (default: {FORCE_TRUECOLOR})', default=FORCE_TRUECOLOR)
|
|
3693
3692
|
parser.add_argument("-V","--version", action='version', version=f'%(prog)s {version} @ {COMMIT_DATE} with [ {", ".join(_binPaths.keys())} ] by {AUTHOR} ({AUTHOR_EMAIL})')
|
|
3694
3693
|
return parser
|
|
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
|
|
File without changes
|