mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
65 lines
2.0 KiB
Python
65 lines
2.0 KiB
Python
from datetime import date, tzinfo
|
|
from datetime import datetime as builtin_datetime
|
|
from datetime import time as builtin_time
|
|
from re import Pattern
|
|
from typing import Any, Literal
|
|
|
|
re_formatchars: Pattern[str]
|
|
re_escaped: Pattern[str]
|
|
|
|
class Formatter:
|
|
def format(self, formatstr: str) -> str: ...
|
|
|
|
class TimeFormat(Formatter):
|
|
data: builtin_datetime | builtin_time
|
|
timezone: tzinfo | None
|
|
def __init__(self, obj: builtin_datetime | builtin_time) -> None: ...
|
|
def a(self) -> str: ...
|
|
def A(self) -> str: ...
|
|
def e(self) -> str: ...
|
|
def f(self) -> int | str: ...
|
|
def g(self) -> int: ...
|
|
def G(self) -> int: ...
|
|
def h(self) -> str: ...
|
|
def H(self) -> str: ...
|
|
def i(self) -> str: ...
|
|
def O(self) -> str: ...
|
|
def P(self) -> str: ...
|
|
def s(self) -> str: ...
|
|
def T(self) -> str: ...
|
|
def u(self) -> str: ...
|
|
def Z(self) -> int | Literal[""]: ...
|
|
|
|
class DateFormat(TimeFormat):
|
|
data: builtin_datetime | date | builtin_time # type: ignore[assignment]
|
|
timezone: tzinfo | None
|
|
year_days: Any
|
|
def __init__(self, obj: builtin_datetime | builtin_time | date) -> None: ...
|
|
def b(self) -> str: ...
|
|
def c(self) -> str: ...
|
|
def d(self) -> str: ...
|
|
def D(self) -> str: ...
|
|
def E(self) -> str: ...
|
|
def F(self) -> str: ...
|
|
def I(self) -> str: ...
|
|
def j(self) -> int: ...
|
|
def l(self) -> str: ...
|
|
def L(self) -> bool: ...
|
|
def m(self) -> str: ...
|
|
def M(self) -> str: ...
|
|
def n(self) -> int: ...
|
|
def N(self) -> str: ...
|
|
def o(self) -> int: ...
|
|
def r(self) -> str: ...
|
|
def S(self) -> str: ...
|
|
def t(self) -> str: ...
|
|
def U(self) -> int: ...
|
|
def w(self) -> int: ...
|
|
def W(self) -> int: ...
|
|
def y(self) -> str: ...
|
|
def Y(self) -> int: ...
|
|
def z(self) -> int: ...
|
|
|
|
def format(value: builtin_datetime | date | builtin_time, format_string: str) -> str: ...
|
|
def time_format(value: builtin_datetime | builtin_time, format_string: str) -> str: ...
|