Skip to content

Commit 1612bec

Browse files
authored
Merge branch 'main' into cysqlite
2 parents f319ebb + f8f0794 commit 1612bec

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

stdlib/tkinter/__init__.pyi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1153,7 +1153,9 @@ class Grid:
11531153
ipady: float | str = ...,
11541154
padx: float | str | tuple[float | str, float | str] = ...,
11551155
pady: float | str | tuple[float | str, float | str] = ...,
1156-
sticky: str = ..., # consists of letters 'n', 's', 'w', 'e', may contain repeats, may be empty
1156+
sticky: (
1157+
str | list[str] | tuple[str, ...]
1158+
) = ..., # consists of letters 'n', 's', 'w', 'e', may contain repeats, may be empty
11571159
in_: Misc = ...,
11581160
**kw: Any, # allow keyword argument named 'in', see #4836
11591161
) -> None: ...

stubs/cffi/METADATA.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "1.17.*"
1+
version = "2.0.*"
22
upstream_repository = "https://github.com/python-cffi/cffi/"
33
requires = ["types-setuptools"]
44

0 commit comments

Comments
 (0)