Revert "libdot: require Python 3.5+ up front"

This reverts commit e6057dff36ce36494180fbeb6edafae99624538b.

Reason for revert: broke the tree https://ci.chromium.org/p/chromeos/builders/general/CommitQueue/b8910564816969468848

Original change's description:
> libdot: require Python 3.5+ up front
> 
> We're only testing against Python 3.5 or newer currently, and we're
> using features added in that release, so make we're running it.  This
> will help avoid confusing errors like:
>   File ".../libapps/libdot/bin/libdot.py", line 135, in run
>     result = subprocess.run(cmd, cwd=cwd, **kwargs)
> AttributeError: 'module' object has no attribute 'run'
> 
> Change-Id: I1e31ad04faf85dc7e94606e8106973f1fe950f2d
> Reviewed-on: https://chromium-review.googlesource.com/c/apps/libapps/+/1660837
> Reviewed-by: Joel Hockey <joelhockey@chromium.org>
> Tested-by: Mike Frysinger <vapier@chromium.org>

TBR=vapier@chromium.org,joelhockey@chromium.org

Change-Id: I17fb3860acc0080dae4a0eca120c49ca3b789745
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://chromium-review.googlesource.com/c/apps/libapps/+/1661750
Reviewed-by: Jason Clinton <jclinton@chromium.org>
Tested-by: Jason Clinton <jclinton@chromium.org>
1 file changed
tree: eb94b79c422222e9a4f47c4af8d13cb6c4bdf5e0
  1. hterm/
  2. libdot/
  3. nassh/
  4. ssh_client/
  5. .clang-format
  6. .eslintrc.js
  7. .gitignore
  8. .pylintrc
  9. Dockerfile
  10. HACK.md
  11. LICENSE
  12. navbar.md
  13. package.json
  14. README.md
README.md

Hello

This repository contains the libdot JavaScript library and some web applications that make use of it.

The official copy of this repository is hosted at https://chromium.googlesource.com/apps/libapps.

There is also a mirror on github at https://github.com/libapps/libapps-mirror. A few subprojects are also extracted out into their own git repo and mirrored. Keep in mind that these mirrors may occasionally be behind the official repository.

All changes must go through the Gerrit code review server on https://chromium-review.googlesource.com. Github pull requests cannot be accepted. Please see the HACK.md document in this directory for the details.

Top level directories

  • libdot/ is a small set of JS libraries initially developed as part of hterm, now available as shared code.

  • hterm/ is a JS library that provides a terminal emulator. It is reasonably fast, reasonably correct, and reasonably portable across browsers.

  • nassh/ is the Secure Shell Chrome App (currently a “v1.5” app, soon to become a “v2” or platform app) that combines hterm with a NaCl build of OpenSSH to provide a PuTTY-like app for Chrome users.

  • ssh_client/ is the NaCl port of OpenSSH. It is used by nassh to create the Secure Shell App.