/opt/imunify360/venv/bin
NameSizeModeActions
__pycache__/-0755rm
activate17340644editdlrm
activate.csh9580644editdlrm
activate.fish22340644editdlrm
Activate.ps190330644editdlrm
distro2120755editdlrm
docutils2230755editdlrm
imunify360-command-wrapper122100755editdlrm
jsonschema2200755editdlrm
normalizer2510755editdlrm
pip2800755editdlrm
pip32800755editdlrm
pip3.112800755editdlrm
pw-migrate2220755editdlrm
pwiz.py82490755editdlrm
pw_migrate2220755editdlrm
pybabel2290755editdlrm
python159600755editdlrm
python3159600755editdlrm
python3.11159600755editdlrm
rst2html.py6610755editdlrm
rst2html4.py7830755editdlrm
rst2html5.py11180755editdlrm
rst2latex.py8600755editdlrm
rst2man.py6830755editdlrm
rst2odt.py8490755editdlrm
rst2odt_prepstyles.py6550755editdlrm
rst2pseudoxml.py6680755editdlrm
rst2s5.py7040755editdlrm
rst2xetex.py9400755editdlrm
rst2xml.py6690755editdlrm
rstpep2html.py7370755editdlrm
Edit: /opt/imunify360/venv/bin/rst2pseudoxml.py (668B)
#!/builddir/build/BUILD/imunify360-venv-2.6.3/opt/imunify360/venv/bin/python3 # $Id: rst2pseudoxml.py 9115 2022-07-28 17:06:24Z milde $ # Author: David Goodger # Copyright: This module has been placed in the public domain. """ A minimal front end to the Docutils Publisher, producing pseudo-XML. """ try: import locale locale.setlocale(locale.LC_ALL, '') except Exception: pass from docutils.core import publish_cmdline, default_description description = ('Generates pseudo-XML from standalone reStructuredText ' 'sources (for testing purposes). ' + default_description) publish_cmdline(description=description)