diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-07-19 02:23:19 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-07-19 02:23:19 +0200 |
commit | 0aca8ebfb15237e60effce06ccff2085516117f6 (patch) | |
tree | e3f28471f4f682f333d5f1b0725ec6572b9cb1bc /module/utils.py | |
parent | Move test stuff to common directory (diff) | |
download | pyload-0aca8ebfb15237e60effce06ccff2085516117f6.tar.xz |
Remove self-tests from all files
Diffstat (limited to 'module/utils.py')
-rw-r--r-- | module/utils.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/module/utils.py b/module/utils.py index fa6b84095..93ff14a46 100644 --- a/module/utils.py +++ b/module/utils.py @@ -213,8 +213,3 @@ def fixup(m): def html_unescape(text): """Removes HTML or XML character references and entities from a text string""" return re.sub("&#?\w+;", fixup, text) - -if __name__ == "__main__": - print freeSpace(".") - - print remove_chars("ab'cdgdsf''ds'", "'ghd") |