From 81f2743f1f590379a7df7693d70c7326df0639e5 Mon Sep 17 00:00:00 2001 From: Kleis Auke Wolthuizen Date: Fri, 29 Nov 2019 14:54:12 +0100 Subject: [PATCH] Move Introspect class to the public API --- pyvips/__init__.py | 2 +- pyvips/voperation.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyvips/__init__.py b/pyvips/__init__.py index 783e898..9acf8d0 100644 --- a/pyvips/__init__.py +++ b/pyvips/__init__.py @@ -187,7 +187,7 @@ def _remove_log_handler(): from .vregion import * __all__ = [ - 'Error', 'Image', 'Region', 'Operation', 'GValue', 'Interpolate', 'GObject', + 'Error', 'Image', 'Region', 'Introspect', 'Operation', 'GValue', 'Interpolate', 'GObject', 'VipsObject', 'type_find', 'type_name', 'version', '__version__', 'at_least_libvips', 'API_mode', 'get_suffixes', diff --git a/pyvips/voperation.py b/pyvips/voperation.py index 935fdad..108c7d8 100644 --- a/pyvips/voperation.py +++ b/pyvips/voperation.py @@ -531,7 +531,7 @@ def cache_set_trace(trace): __all__ = [ - 'Operation', + 'Introspect', 'Operation', 'cache_set_max', 'cache_set_max_mem', 'cache_set_max_files', 'cache_set_trace' ]