FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
gh-89263: Add typing.get_overloads by JelleZijlstra · Pull Request #31716 · python/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
35.3k
Star
74.9k
Code
Issues
5k+
Pull requests
2.6k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
gh-89263: Add typing.get_overloads
- #31716
#31716
Merged
JelleZijlstra
merged 37 commits into
python:main
python/cpython:main
from
JelleZijlstra:funcregistry
JelleZijlstra/cpython:funcregistry
Copy head branch name to clipboard
Apr 16, 2022
Conversation
Commits
37
(37)
Checks
Files changed
Merged
gh-89263: Add typing.get_overloads
#31716
JelleZijlstra
merged 37 commits into
python:main
python/cpython:main
from
JelleZijlstra:funcregistry
JelleZijlstra/cpython:funcregistry
Copy head branch name to clipboard
Commits
Commits on Mar 6, 2022
initial
JelleZijlstra
committed
2ee377d
View commit details
Copy full SHA for 2ee377d
Browse repository at this point
Commits on Mar 7, 2022
Implementation, tests, and docs
JelleZijlstra
committed
831b565
View commit details
Copy full SHA for 831b565
Browse repository at this point
fix versionadded
JelleZijlstra
committed
f03f8a9
View commit details
Copy full SHA for f03f8a9
Browse repository at this point
Commits on Mar 8, 2022
Merge branch 'main' into funcregistry
JelleZijlstra
authored
404668a
View commit details
Copy full SHA for 404668a
Browse repository at this point
make get_key_for_callable private
JelleZijlstra
committed
7a5b0d1
View commit details
Copy full SHA for 7a5b0d1
Browse repository at this point
Commits on Mar 9, 2022
doc updates; remove unnecessary try-except
JelleZijlstra
committed
6998255
View commit details
Copy full SHA for 6998255
Browse repository at this point
Commits on Mar 27, 2022
Merge remote-tracking branch 'upstream/main' into funcregistry
JelleZijlstra
committed
26bb908
View commit details
Copy full SHA for 26bb908
Browse repository at this point
rename method
JelleZijlstra
committed
f52b757
View commit details
Copy full SHA for f52b757
Browse repository at this point
Don't store singledispatch in the registry
JelleZijlstra
committed
fc6a925
View commit details
Copy full SHA for fc6a925
Browse repository at this point
more tests
JelleZijlstra
committed
b524244
View commit details
Copy full SHA for b524244
Browse repository at this point
and another
JelleZijlstra
committed
e95558e
View commit details
Copy full SHA for e95558e
Browse repository at this point
fix line length in new tests
JelleZijlstra
committed
31fd72d
View commit details
Copy full SHA for 31fd72d
Browse repository at this point
Update Doc/library/functools.rst
JelleZijlstra
authored
7041ad3
View commit details
Copy full SHA for 7041ad3
Browse repository at this point
Update Doc/library/typing.rst
JelleZijlstra
authored
e26b0db
View commit details
Copy full SHA for e26b0db
Browse repository at this point
Commits on Apr 2, 2022
only for overload
JelleZijlstra
committed
1bf89fb
View commit details
Copy full SHA for 1bf89fb
Browse repository at this point
Merge remote-tracking branch 'upstream/main' into funcregistry
JelleZijlstra
committed
83ac432
View commit details
Copy full SHA for 83ac432
Browse repository at this point
fix tests
JelleZijlstra
committed
dfdbdc7
View commit details
Copy full SHA for dfdbdc7
Browse repository at this point
undo stray changes, fix NEWS entry
JelleZijlstra
committed
e16c8d0
View commit details
Copy full SHA for e16c8d0
Browse repository at this point
remove extra import
JelleZijlstra
committed
b3d2227
View commit details
Copy full SHA for b3d2227
Browse repository at this point
Apply suggestions from code review
Show description for 9727eee
JelleZijlstra
and
AlexWaygood
authored
9727eee
View commit details
Copy full SHA for 9727eee
Browse repository at this point
Commits on Apr 3, 2022
Apply suggestions from code review
Show description for 2e374b8
JelleZijlstra
and
gvanrossum
authored
2e374b8
View commit details
Copy full SHA for 2e374b8
Browse repository at this point
Guido's feedback
JelleZijlstra
committed
ff03b12
View commit details
Copy full SHA for ff03b12
Browse repository at this point
Optimizations suggested by Guido and Alex
JelleZijlstra
committed
17f0710
View commit details
Copy full SHA for 17f0710
Browse repository at this point
inline _get_firstlineno, store outer objects for classmethod/staticmethod
JelleZijlstra
committed
2346970
View commit details
Copy full SHA for 2346970
Browse repository at this point
use defaultdict
JelleZijlstra
committed
f2053a0
View commit details
Copy full SHA for f2053a0
Browse repository at this point
Commits on Apr 4, 2022
another optimization
JelleZijlstra
committed
b6131ad
View commit details
Copy full SHA for b6131ad
Browse repository at this point
Commits on Apr 7, 2022
Update Lib/typing.py
Show description for 506bd66
JelleZijlstra
and
Fidget-Spinner
authored
506bd66
View commit details
Copy full SHA for 506bd66
Browse repository at this point
Commits on Apr 8, 2022
Merge remote-tracking branch 'upstream/main' into funcregistry
JelleZijlstra
committed
e9a2100
View commit details
Copy full SHA for e9a2100
Browse repository at this point
Commits on Apr 9, 2022
Merge remote-tracking branch 'upstream/main' into funcregistry
JelleZijlstra
committed
2b1a5cc
View commit details
Copy full SHA for 2b1a5cc
Browse repository at this point
Simpler implementation (thanks Guido)
JelleZijlstra
committed
103bfd4
View commit details
Copy full SHA for 103bfd4
Browse repository at this point
More comments and tests
JelleZijlstra
committed
d453f7f
View commit details
Copy full SHA for d453f7f
Browse repository at this point
Commits on Apr 14, 2022
Merge remote-tracking branch 'upstream/main' into funcregistry
JelleZijlstra
committed
450afeb
View commit details
Copy full SHA for 450afeb
Browse repository at this point
simplify clear_overloads
JelleZijlstra
committed
ea62287
View commit details
Copy full SHA for ea62287
Browse repository at this point
use partial
JelleZijlstra
committed
905253c
View commit details
Copy full SHA for 905253c
Browse repository at this point
add test
JelleZijlstra
committed
debbf8a
View commit details
Copy full SHA for debbf8a
Browse repository at this point
docs changes (thanks Alex)
JelleZijlstra
committed
754c134
View commit details
Copy full SHA for 754c134
Browse repository at this point
Merge remote-tracking branch 'upstream/main' into funcregistry
JelleZijlstra
committed
1ad8224
View commit details
Copy full SHA for 1ad8224
Browse repository at this point
Back
|
FazBrowse Home
|
New Git URL