[reportlab] Update to 4.4.9 (#15290)

This commit is contained in:
Semyon Moroz
2026-01-16 11:14:54 +00:00
committed by GitHub
parent ba6dbf4573
commit bcf2ccf0a3
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
version = "4.4.7"
version = "4.4.9"
# GitHub mirror of https://hg.reportlab.com/hg-public/reportlab/file
upstream_repository = "https://github.com/MrBitBucket/reportlab-mirror"
@@ -1,4 +1,5 @@
from _typeshed import Incomplete
from collections.abc import Callable
from typing import IO, Literal
from reportlab.lib.colors import Color, _ConvertibleToColor
@@ -267,5 +268,8 @@ class Canvas(_PDFColorSetter):
@property
def acroForm(self): ...
def drawBoundary(self, sb, x1: float, y1: float, width: float, height: float) -> None: ...
# Following callbacks are accepted: canvas, kind and label
def setNamedCB(self, name: str, cb: Callable[[Canvas, str | None, str], None]) -> None: ...
def getNamedCB(self, name: str) -> Callable[[Canvas, str | None, str], None] | None: ...
__all__ = ["Canvas", "ShowBoundaryValue"]