Skip to content
Open
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 stubs/reportlab/METADATA.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version = "5.0.0"
# GitHub mirror of https://hg.reportlab.com/hg-public/reportlab/file
version = "5.0.1"
upstream-repository = "https://github.com/MrBitBucket/reportlab-mirror"

[tool.stubtest]
Expand Down
3 changes: 3 additions & 0 deletions stubs/reportlab/reportlab/lib/rl_safe_eval.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import re
import time
from _typeshed import Incomplete
from collections.abc import Generator
from types import GenericAlias as GenericAlias
from typing_extensions import Never, Self

eval_debug: int
Expand Down Expand Up @@ -200,6 +201,8 @@ class __RL_SAFE_ENV__:
def __rl_unpack_sequence__(self, it, spec, _getiter_): ...
def __rl_is_allowed_name__(self, name, crash: bool = True) -> bool: ...
def __rl_getattr__(self, obj, a, *args): ...
def __rl_setattr__(self, obj, a, v, *args): ...
def __inner_rl_getitem__(self, obj, a): ...
def __rl_getitem__(self, obj, a): ...
__rl_tmax__: int
__rl_max_len__: int
Expand Down
2 changes: 1 addition & 1 deletion stubs/reportlab/reportlab/lib/utils.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class ArgvDictValue:
def getArgvDict(**kw): ...
def getHyphenater(hDict=None): ...
def open_for_read_by_name(name, mode: str = "b"): ...
def rlUrlRead(name: str, headers: MutableMapping[str, str] | None = None) -> _UrlopenRet: ...
def rlUrlRead(url: str, headers: MutableMapping[str, str] | None = None) -> _UrlopenRet | bytes: ...
def open_for_read(name, mode: str = "b"): ...
def open_and_read(name, mode: str = "b"): ...
def open_and_readlines(name, mode: str = "t"): ...
Expand Down
Loading