From 9f0bf03753d9f0f0539be5d3f2270ccdd1bdd766 Mon Sep 17 00:00:00 2001 From: Andy Kipp Date: Sun, 23 Jun 2024 03:16:52 +0200 Subject: [PATCH] xonsh.lib: minor docstring (#5529) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #2726. Self merge minor doc. ## For community ⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍 comment** --------- Co-authored-by: a <1@1.1> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- xonsh/lib/__init__.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/xonsh/lib/__init__.py b/xonsh/lib/__init__.py index e69de29bb..327fb4ced 100644 --- a/xonsh/lib/__init__.py +++ b/xonsh/lib/__init__.py @@ -0,0 +1,9 @@ +""" +Originally posted by @scopatz in https://github.com/xonsh/xonsh/issues/2726#issuecomment-406447196 : + + Recently @CJ-Wright has started up a ``xonsh.lib`` sub-package, which is usable from pure Python. + This is meant as a standard library for xonsh and downstream tools. + Currently there are some xonsh-ish wrappers around ``os`` and ``subprocess``. + We'd love to see more contributions to this effort! So if there is something + like ``sh()`` that you'd like to see, by all means please help us add it! +"""