| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Python312/Lib/site-packages/numpy/_core/ |
Upload File : |
from collections.abc import Callable
from contextvars import ContextVar
from typing import Any, Final, TypedDict
from .arrayprint import _FormatDict
__all__ = ["format_options"]
###
class _FormatOptionsDict(TypedDict):
edgeitems: int
threshold: int
floatmode: str
precision: int
suppress: bool
linewidth: int
nanstr: str
infstr: str
sign: str
formatter: _FormatDict | None
legacy: int
override_repr: Callable[[Any], str] | None
###
default_format_options_dict: Final[_FormatOptionsDict] = ...
format_options: ContextVar[_FormatOptionsDict]