diff options
author | Victor Stinner <vstinner@python.org> | 2023-11-15 02:41:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-15 02:41:29 (GMT) |
commit | 55f3cce821f8f18ddb485aa07bdf0190c358d081 (patch) | |
tree | e3a5984dba95733646cc19a14d236c33548ccd28 /PCbuild | |
parent | e0f512797596282bff63260f8102592aad37cdf1 (diff) | |
download | cpython-55f3cce821f8f18ddb485aa07bdf0190c358d081.zip cpython-55f3cce821f8f18ddb485aa07bdf0190c358d081.tar.gz cpython-55f3cce821f8f18ddb485aa07bdf0190c358d081.tar.bz2 |
gh-111545: Test PyHash_GetFuncDef() function (#112098)
Add Modules/_testcapi/hash.c and Lib/test/test_capi/test_hash.py.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/_testcapi.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/_testcapi.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/_testcapi.vcxproj b/PCbuild/_testcapi.vcxproj index 2d8a652..1c15541 100644 --- a/PCbuild/_testcapi.vcxproj +++ b/PCbuild/_testcapi.vcxproj @@ -124,6 +124,7 @@ <ClCompile Include="..\Modules\_testcapi\file.c" /> <ClCompile Include="..\Modules\_testcapi\codec.c" /> <ClCompile Include="..\Modules\_testcapi\sys.c" /> + <ClCompile Include="..\Modules\_testcapi\hash.c" /> <ClCompile Include="..\Modules\_testcapi\immortal.c" /> <ClCompile Include="..\Modules\_testcapi\gc.c" /> </ItemGroup> diff --git a/PCbuild/_testcapi.vcxproj.filters b/PCbuild/_testcapi.vcxproj.filters index 573e54d..6059959 100644 --- a/PCbuild/_testcapi.vcxproj.filters +++ b/PCbuild/_testcapi.vcxproj.filters @@ -102,6 +102,9 @@ <ClCompile Include="..\Modules\_testcapi\sys.c"> <Filter>Source Files</Filter> </ClCompile> + <ClCompile Include="..\Modules\_testcapi\hash.c"> + <Filter>Source Files</Filter> + </ClCompile> <ClCompile Include="..\Modules\_testcapi\gc.c"> <Filter>Source Files</Filter> </ClCompile> |