1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
Source: python-shellescape
Section: python
Priority: optional
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Steffen Moeller <moeller@debian.org>
Build-Depends: debhelper (>= 9), dh-python, python-all, python3-all, python-setuptools, python3-setuptools
Standards-Version: 3.9.7
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/python-shellescape.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/python-shellescape.git
Homepage: https://github.com/chrissimpkins/shellescape
X-Python-Version: >= 2.6
X-Python3-Version: >= 3.2
Package: python-shellescape
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}
Description: escapes characters to safely assemble command lines
This python2 library helps to escape a string to safely use it as a token in
a shell command.
.
The shellescape Python module defines the shellescape.quote() function
that returns a shell-escaped version of a Python string. This is a
backport of the shlex.quote() function from Python 3.4.3 that makes
it accessible to users of Python 3 versions < 3.3 and all Python 2.x
versions.
Package: python3-shellescape
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}
Description: escapes characters to safely assemble command lines
This python3 library helps to escape a string to safely use it as a token in
a shell command.
.
The shellescape Python module defines the shellescape.quote() function
that returns a shell-escaped version of a Python string. This is a
backport of the shlex.quote() function from Python 3.4.3 that makes
it accessible to users of Python 3 versions < 3.3 and all Python 2.x
versions.
|