twisted.python.filepath.Permissions(FancyEqMixin, object) class documentationtwisted.python.filepath
(View In Hierarchy)
A class representing read/write/execute permissions. Instantiate with any portion of the file's mode that includes the permission bits.
| Present Since | 11.1 | |
| Instance Variable | user | User/Owner permissions (type: RWX) | 
| Instance Variable | group | Group permissions (type: RWX) | 
| Instance Variable | other | Other/World permissions (type: RWX) | 
| Method | __init__ | Undocumented | 
| Method | __repr__ | Undocumented | 
| Method | shorthand | Returns a short string representing the permission bits. Looks like what is printed by command line utilities such as 'ls -l' (e.g. 'rwx-wx--x') | 
Inherited from FancyEqMixin:
| Method | __eq__ | Undocumented | 
| Method | __ne__ | Undocumented | 
Returns a short string representing the permission bits. Looks like what is printed by command line utilities such as 'ls -l' (e.g. 'rwx-wx--x')
| Returns | The shorthand string. (type: str) | |