8000 gh-100039: enhance __signature__ to work with str and callables by ethanfurman · Pull Request #100168 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-100039: enhance __signature__ to work with str and callables #100168

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

Merged
merged 4 commits into from
Dec 16, 2022
Merged
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
Prev Previous commit
Next Next commit
fix enum test
  • Loading branch information
ethanfurman committed Dec 11, 2022
commit 0ea1d384cb1f9752348af013f0474a4183b71a34
4 changes: 2 additions & 2 deletions Lib/test/test_enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -4259,7 +4259,7 @@ class TestEnumTypeSubclassing(unittest.TestCase):
Help on class Color in module %s:

class Color(enum.Enum)
| Color(cls, /, *values)
| Color(*values)
|
| Method resolution order:
| Color
Expand Down Expand Up @@ -4315,7 +4315,7 @@ class Color(enum.Enum)
Help on class Color in module %s:

class Color(enum.Enum)
| Color(cls, /, *values)
| Color(*values)
|
| Method resolution order:
| Color
Expand Down
0