diff options
author | Damir Jelić <poljar@termina.org.uk> | 2018-07-08 12:19:15 +0200 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2018-07-18 17:44:32 -0400 |
commit | 2fccf44015dfb27865ddb50ed66afdedbd4e03e6 (patch) | |
tree | d0de620efb1e4871a8311685998eeb6f1508d777 /python/olm/_base.py | |
parent | 0dc27f73c4c15f15e6507d0be7d152cf1ae26a41 (diff) |
python: Remove the python bindings.
Signed-off-by: Damir Jelić <poljar@termina.org.uk>
Diffstat (limited to 'python/olm/_base.py')
-rw-r--r-- | python/olm/_base.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/python/olm/_base.py b/python/olm/_base.py deleted file mode 100644 index ad21d6f..0000000 --- a/python/olm/_base.py +++ /dev/null @@ -1,17 +0,0 @@ -import os.path - -from ctypes import * - - -lib = cdll.LoadLibrary(os.path.join( - os.path.dirname(__file__), "..", "..", "build", "libolm.so.2") -) - -lib.olm_error.argtypes = [] -lib.olm_error.restypes = c_size_t - -ERR = lib.olm_error() - - -class OlmError(Exception): - pass |