Lichen

lib/os.py

107:3fe37462e0f6
2016-10-17 Paul Boddie Track attribute assignment in attribute usage in order to restrict accessors. Changed the function type to be separate from all other types, preventing special __fn__ and __args__ attribute shadowing.
     1 #!/usr/bin/env python     2      3 from posix import *     4 from genericos import *     5      6 import posixpath as path     7      8 from posixpath import (     9     altsep,    10     curdir,    11     defpath,    12     devnull,    13     extsep,    14     pardir,    15     pathsep,    16     sep    17     )    18     19 # vim: tabstop=4 expandtab shiftwidth=4