rlmgrep 0.1.26__tar.gz → 0.1.27__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.
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/PKG-INFO +1 -1
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/pyproject.toml +1 -1
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep/__init__.py +1 -1
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep/cli.py +3 -3
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep.egg-info/PKG-INFO +1 -1
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/README.md +0 -0
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep/__main__.py +0 -0
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep/config.py +0 -0
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep/file_map.py +0 -0
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep/ingest.py +0 -0
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep/interpreter.py +0 -0
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep/render.py +0 -0
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep/rlm.py +0 -0
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep.egg-info/SOURCES.txt +0 -0
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep.egg-info/dependency_links.txt +0 -0
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep.egg-info/entry_points.txt +0 -0
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep.egg-info/requires.txt +0 -0
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/rlmgrep.egg-info/top_level.txt +0 -0
- {rlmgrep-0.1.26 → rlmgrep-0.1.27}/setup.cfg +0 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__all__ = ["__version__"]
|
|
2
|
-
__version__ = "0.1.
|
|
2
|
+
__version__ = "0.1.27"
|
|
@@ -569,9 +569,9 @@ def main(argv: list[str] | None = None) -> int:
|
|
|
569
569
|
return 2
|
|
570
570
|
else:
|
|
571
571
|
if sys.stdin.isatty():
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
572
|
+
input_paths = ["."]
|
|
573
|
+
else:
|
|
574
|
+
stdin_text = sys.stdin.read()
|
|
575
575
|
|
|
576
576
|
if input_paths is None:
|
|
577
577
|
text = stdin_text or ""
|
|
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
|
|
File without changes
|
|
File without changes
|