FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
gh-111495: Add tests for PyNumber C API by skirpichev · Pull Request #111996 · 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-111495: Add tests for PyNumber C API
- #111996
#111996
Merged
vstinner
merged 38 commits into
python:main
python/cpython:main
from
skirpichev:capi-number-tests
skirpichev/cpython:capi-number-tests
Copy head branch name to clipboard
Aug 26, 2024
Conversation
Commits
38
(38)
Checks
Files changed
Merged
gh-111495: Add tests for PyNumber C API
#111996
vstinner
merged 38 commits into
python:main
python/cpython:main
from
skirpichev:capi-number-tests
skirpichev/cpython:capi-number-tests
Copy head branch name to clipboard
Commits
Commits on Nov 12, 2023
gh-111495: Add tests for PyNumber C API
skirpichev
committed
cbca658
View commit details
Copy full SHA for cbca658
Browse repository at this point
Remove inaccessible code (PyLong_AsSsize_t raises OverflowError)
skirpichev
committed
0d95d57
View commit details
Copy full SHA for 0d95d57
Browse repository at this point
Drop checks for broken float subclasses (like for PyNumber_Long in 31a655411a)
skirpichev
committed
7b8adb4
View commit details
Copy full SHA for 7b8adb4
Browse repository at this point
Commits on Nov 13, 2023
+ tests with sets for intersection/union/etc
skirpichev
committed
4665f25
View commit details
Copy full SHA for 4665f25
Browse repository at this point
Use macroses
skirpichev
committed
9e14905
View commit details
Copy full SHA for 9e14905
Browse repository at this point
Merge branch 'main' into capi-number-tests
skirpichev
committed
c0f4051
View commit details
Copy full SHA for c0f4051
Browse repository at this point
Commits on Nov 14, 2023
Merge branch 'main' into capi-number-tests
skirpichev
committed
3a7a4c4
View commit details
Copy full SHA for 3a7a4c4
Browse repository at this point
Commits on Nov 15, 2023
Ternary ops (currently only pow/ipow) don't use __r*__ dunders
skirpichev
committed
788e9c2
View commit details
Copy full SHA for 788e9c2
Browse repository at this point
More tests
skirpichev
committed
8cf4429
View commit details
Copy full SHA for 8cf4429
Browse repository at this point
Merge branch 'main' into capi-number-tests
skirpichev
committed
91c68a7
View commit details
Copy full SHA for 91c68a7
Browse repository at this point
More tests
skirpichev
committed
9f6fd15
View commit details
Copy full SHA for 9f6fd15
Browse repository at this point
Use BINARY_FUNC macro for some remaining ops
skirpichev
committed
9f5b7a1
View commit details
Copy full SHA for 9f5b7a1
Browse repository at this point
Add UNARY_FUNC macro to define unary PyNumber_* functions
skirpichev
committed
2675738
View commit details
Copy full SHA for 2675738
Browse repository at this point
Fix typo
skirpichev
committed
2bc6bc7
View commit details
Copy full SHA for 2bc6bc7
Browse repository at this point
Make last argument optional for PyNumber_Power/InPlacePower
skirpichev
committed
49d673b
View commit details
Copy full SHA for 49d673b
Browse repository at this point
More tests
skirpichev
committed
b2dda89
View commit details
Copy full SHA for b2dda89
Browse repository at this point
Remove number_check() from _testcapi/abstract.c, move tests
skirpichev
committed
b86d2eb
View commit details
Copy full SHA for b86d2eb
Browse repository at this point
Commits on Nov 16, 2023
address review:
Show description for 0fbbba9
skirpichev
committed
0fbbba9
View commit details
Copy full SHA for 0fbbba9
Browse repository at this point
Merge branch 'main' into capi-number-tests
skirpichev
committed
bcf0c20
View commit details
Copy full SHA for bcf0c20
Browse repository at this point
Commits on Nov 17, 2023
some cleanup for support classes
skirpichev
committed
9aae51b
View commit details
Copy full SHA for 9aae51b
Browse repository at this point
Commits on Nov 18, 2023
+ cleanup
skirpichev
committed
d052280
View commit details
Copy full SHA for d052280
Browse repository at this point
use instead generic tests for unary functions
skirpichev
committed
c04679c
View commit details
Copy full SHA for c04679c
Browse repository at this point
+1
skirpichev
committed
efe4aab
View commit details
Copy full SHA for efe4aab
Browse repository at this point
Commits on Dec 2, 2023
use instead generic tests for binary functions + misc tests
skirpichev
committed
4d96d35
View commit details
Copy full SHA for 4d96d35
Browse repository at this point
Merge branch 'main' into capi-number-tests
skirpichev
committed
b00365e
View commit details
Copy full SHA for b00365e
Browse repository at this point
Commits on Dec 3, 2023
+1
skirpichev
committed
74abc5d
View commit details
Copy full SHA for 74abc5d
Browse repository at this point
Commits on Feb 21, 2024
Merge branch 'main' into capi-number-tests
skirpichev
authored
d62b802
View commit details
Copy full SHA for d62b802
Browse repository at this point
Commits on Mar 22, 2024
Merge branch 'master' into capi-number-tests
skirpichev
committed
7ba5bb0
View commit details
Copy full SHA for 7ba5bb0
Browse repository at this point
Commits on Mar 23, 2024
Merge branch 'master' into capi-number-tests
skirpichev
committed
76aac6f
View commit details
Copy full SHA for 76aac6f
Browse repository at this point
Commits on Mar 26, 2024
Include only basic tests for unary/binary ops (with builtin types)
skirpichev
committed
de8f7f3
View commit details
Copy full SHA for de8f7f3
Browse repository at this point
Commits on Aug 9, 2024
Merge branch 'master' into capi-number-tests
skirpichev
committed
bd3435b
View commit details
Copy full SHA for bd3435b
Browse repository at this point
address review: sort imports
skirpichev
committed
ab08430
View commit details
Copy full SHA for ab08430
Browse repository at this point
address review: split test_misc()
skirpichev
committed
0bccf1c
View commit details
Copy full SHA for 0bccf1c
Browse repository at this point
Update Lib/test/test_capi/test_number.py
Show description for abde55b
skirpichev
and
vstinner
authored
abde55b
View commit details
Copy full SHA for abde55b
Browse repository at this point
address review: use import_helper for _testbuffer
skirpichev
committed
f4be9c5
View commit details
Copy full SHA for f4be9c5
Browse repository at this point
fix typo
skirpichev
committed
86df16c
View commit details
Copy full SHA for 86df16c
Browse repository at this point
drop support classes with __trunc__ dunder
skirpichev
committed
c620c72
View commit details
Copy full SHA for c620c72
Browse repository at this point
address review: skip two test if no ndarray
skirpichev
committed
556b23b
View commit details
Copy full SHA for 556b23b
Browse repository at this point
Back
|
FazBrowse Home
|
New Git URL