aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-09-10 05:23:52 +0000
committerlloyd <[email protected]>2006-09-10 05:23:52 +0000
commitc6ee4b2a888f0da7ee21028c8b4c9d7d8bd5d357 (patch)
treed9f365fb949a99ff33d3a06013282e64b19cf626
parent7cc3dc61427c1f67e881afb3947c062604a86856 (diff)
Drop this, probably shouldn't have been included in the first place.
-rwxr-xr-xmisc/python/test.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/misc/python/test.py b/misc/python/test.py
deleted file mode 100755
index 20c2a9119..000000000
--- a/misc/python/test.py
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/python
-
-import sys, botan
-
-class PyAlgo(botan.Algorithm):
- def name(self):
- return "PyAlgo"
- def clear(self):
- print "clearing"
-
-def main():
- alg = PyAlgo()
- botan.print_algo(alg)
-
-if __name__ == "__main__":
- sys.exit(main())