2016-08-30 | Paul Boddie | file changeset files shortlog | Added PythonLight alternative libraries. |
paul@6 | 1 | #!/usr/bin/env python |
paul@6 | 2 | |
paul@6 | 3 | from posix import * |
paul@6 | 4 | from genericos import * |
paul@6 | 5 | |
paul@6 | 6 | import posixpath as path |
paul@6 | 7 | |
paul@6 | 8 | from posixpath import ( |
paul@6 | 9 | altsep, |
paul@6 | 10 | curdir, |
paul@6 | 11 | defpath, |
paul@6 | 12 | devnull, |
paul@6 | 13 | extsep, |
paul@6 | 14 | pardir, |
paul@6 | 15 | pathsep, |
paul@6 | 16 | sep |
paul@6 | 17 | ) |
paul@6 | 18 | |
paul@6 | 19 | # vim: tabstop=4 expandtab shiftwidth=4 |