8000 Move Introspect class to the public API by kleisauke · Pull Request #141 · libvips/pyvips · GitHub
[go: up one dir, main page]

Skip to content

Move Introspect class to the public API #141

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyvips/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion pyvips/voperation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
]
0