8000 ctypes: constructor of _FuncPointer can accept None to paramflags and Structure to iid in runtime by AmberAnsari89 · Pull Request #9251 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

ctypes: constructor of _FuncPointer can accept None to paramflags and Structure to iid in runtime #9251

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

Closed
Closed
Changes from 1 commit
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
Next Next commit
changes attrs:dict[str,str]|None to attrs:dict[str,Any]|None of Tag c…
…lass in element.pyi
  • Loading branch information
AmberAnsari89 committed Nov 3, 2022
commit bde2ace8178075e5d893b56b59eda938b79a634c
2 changes: 1 addition & 1 deletion stubs/beautifulsoup4/bs4/element.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ class Tag(PageElement):
name: str | None = ...,
namespace: str | None = ...,
prefix: str | None = ...,
attrs: dict[str, str] | None = ...,
attrs: dict[str, Any] | None = ...,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's leave this change for another PR.

parent: Tag | None = ...,
previous: PageElement | None = ...,
is_xml: bool | None = ...,
Expand Down
0