From 08f2e31d8c3cf02b17483a55fef653ac8319fc65 Mon Sep 17 00:00:00 2001 From: Jim Garlick Date: Mon, 19 Nov 2018 09:11:11 -0800 Subject: [PATCH] bindings/python: drop sec.py Problem: flux_sec_t is being removed from the public API. Drop the python wrapper for it. --- src/bindings/python/flux/Makefile.am | 1 - src/bindings/python/flux/sec.py | 15 --------------- 2 files changed, 16 deletions(-) delete mode 100644 src/bindings/python/flux/sec.py diff --git a/src/bindings/python/flux/Makefile.am b/src/bindings/python/flux/Makefile.am index 2fb0ac65f349..03148eb206bc 100644 --- a/src/bindings/python/flux/Makefile.am +++ b/src/bindings/python/flux/Makefile.am @@ -7,7 +7,6 @@ fluxpy_PYTHON=\ constants.py\ jsc.py\ kz.py\ - sec.py \ job.py \ mrpc.py \ util.py diff --git a/src/bindings/python/flux/sec.py b/src/bindings/python/flux/sec.py deleted file mode 100644 index 725f9c67e6b2..000000000000 --- a/src/bindings/python/flux/sec.py +++ /dev/null @@ -1,15 +0,0 @@ -from _flux._core import ffi, lib -from flux.wrapper import Wrapper - - -class Sec(Wrapper): - - def __init__(self, handle=None): - super(Sec, self).__init__(ffi, lib, - handle=handle, - match=ffi.typeof( - lib.flux_sec_create).result, - prefixes=['flux_sec_'], - destructor=lib.flux_sec_destroy,) - if handle is None: - self.handle = lib.flux_sec_create()