diff options
author | Petr Viktorin <encukou@gmail.com> | 2022-08-10 07:10:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-10 07:10:25 (GMT) |
commit | 325ae93b6b7113cd4a4c2ce441615ae7def779e2 (patch) | |
tree | 159d54bf90b2356b49b85be00062190bb48b4ebf /PCbuild | |
parent | 3ff6d9affb351292ad8530802e7c06f651520706 (diff) | |
download | cpython-325ae93b6b7113cd4a4c2ce441615ae7def779e2.zip cpython-325ae93b6b7113cd4a4c2ce441615ae7def779e2.tar.gz cpython-325ae93b6b7113cd4a4c2ce441615ae7def779e2.tar.bz2 |
gh-93649: Split unicode tests from _testcapimodule.c & add some more (GH-95819)
- Move PyUnicode tests to a separate file
- Add some more tests for PyUnicode_FromFormat
Co-authored-by: philg314 <110174000+philg314@users.noreply.github.com>
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 0cb4e44..23bb5ec 100644 --- a/PCbuild/_testcapi.vcxproj +++ b/PCbuild/_testcapi.vcxproj @@ -97,6 +97,7 @@ <ClCompile Include="..\Modules\_testcapi\vectorcall.c" /> <ClCompile Include="..\Modules\_testcapi\vectorcall_limited.c" /> <ClCompile Include="..\Modules\_testcapi\heaptype.c" /> + <ClCompile Include="..\Modules\_testcapi\unicode.c" /> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\PC\python_nt.rc" /> diff --git a/PCbuild/_testcapi.vcxproj.filters b/PCbuild/_testcapi.vcxproj.filters index 4da972f..fc2c434 100644 --- a/PCbuild/_testcapi.vcxproj.filters +++ b/PCbuild/_testcapi.vcxproj.filters @@ -21,6 +21,9 @@ <ClCompile Include="..\Modules\_testcapi\heaptype.c"> <Filter>Source Files</Filter> </ClCompile> + <ClCompile Include="..\Modules\_testcapi\unicode.c"> + <Filter>Source Files</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\PC\python_nt.rc"> |