diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-01 17:48:52 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-01 17:48:52 +0200 |
commit | c0d3b2d6dd9f34dcf53db7047defdcc2c214eb79 (patch) | |
tree | 44a552faaa4d119e1a547a1e74fef54e853a110e /module/PyFile.py | |
parent | new api class + documentation (diff) | |
download | pyload-c0d3b2d6dd9f34dcf53db7047defdcc2c214eb79.tar.xz |
sphinx documentation
Diffstat (limited to 'module/PyFile.py')
-rw-r--r-- | module/PyFile.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/PyFile.py b/module/PyFile.py index b5384c399..b230f9e0b 100644 --- a/module/PyFile.py +++ b/module/PyFile.py @@ -48,7 +48,9 @@ def setSize(self, value): self._size = int(value) class PyFile(object): - + """ + Represents a file object at runtime + """ __slots__ = ("m", "id", "url", "name", "size", "_size", "status", "pluginname", "packageid", "error", "order", "lock", "plugin", "waitUntil", "active", "abort", "reconnected", "progress", "pluginmodule", "pluginclass") |