Add an __all__.

This commit is contained in:
William Grant
2011-06-03 22:04:21 +10:00
parent 5da23e5856
commit b78a41d6bf
+4
View File
@@ -21,6 +21,10 @@
import re import re
__all__ = [
'algorithms',
]
def strip_trailing_whitespace(content): def strip_trailing_whitespace(content):
return re.sub(b"[\t ]+\r\n", b"\r\n", content) return re.sub(b"[\t ]+\r\n", b"\r\n", content)