Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/pikepdf/settings.py: 80%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# SPDX-FileCopyrightText: 2022 James R. Barlow
2# SPDX-License-Identifier: MPL-2.0
4"""pikepdf global settings."""
6from __future__ import annotations
8from pikepdf._core import (
9 get_decimal_precision,
10 set_decimal_precision,
11 set_flate_compression_level,
12)
14__all__ = [
15 'get_decimal_precision',
16 'set_decimal_precision',
17 'set_flate_compression_level',
18]