Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add overrides for Gtk 4, GtkSource 5; Add GdkX11, improvements #193

Merged
merged 6 commits into from
Nov 1, 2024
Merged
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
6 changes: 6 additions & 0 deletions src/gi-stubs/repository/GLib.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ from typing import Sequence
from typing import Tuple
from typing import Type
from typing import TypeVar
from typing import Union

from gi.repository import GObject

Expand Down Expand Up @@ -3586,6 +3587,7 @@ class UriParamsIter(GObject.GPointer):
) -> None: ...
def next(self) -> Tuple[bool, str, str]: ...

# override
class Variant(GObject.GPointer):
"""
:Constructors:
Expand Down Expand Up @@ -3764,6 +3766,10 @@ class Variant(GObject.GPointer):
# override
def unpack(self) -> Any: ...
def unref(self) -> None: ...
# override
def __getitem__(self, key: Any) -> Any: ...
# override
def __len__(self) -> int: ...

class VariantBuilder(GObject.GBoxed):
"""
Expand Down
Loading
Loading