aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-08-23 09:12:16 +0000
committerlloyd <[email protected]>2006-08-23 09:12:16 +0000
commitefaeb8fe4458cd6b214896ad72f3d41c25c23313 (patch)
treef691a3a679e88fed1de142454f9d709c29553890
parent183d2c6fa6cb7440a5953e30f254f10ab1e2347e (diff)
Remove an old version of the Filter() wrapper function
-rw-r--r--misc/python/botan/__init__.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/misc/python/botan/__init__.py b/misc/python/botan/__init__.py
index 29ccaca9c..9e136ed39 100644
--- a/misc/python/botan/__init__.py
+++ b/misc/python/botan/__init__.py
@@ -1,5 +1,6 @@
from _botan import *
+# Initialize the library when the module is imported
init = LibraryInitializer()
class SymmetricKey(OctetString):
@@ -24,6 +25,3 @@ def Pipe(*filters):
if filter:
pipe.append(filter)
return pipe
-
-#def Filter(name, key):
-# return make_filter(name, key)