diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-22 15:04:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 15:04:34 (GMT) |
commit | 5e4af2a3e90d78fdf6a4cc42e0472576b1f2b975 (patch) | |
tree | 288d255165674d6464a2739cf5254cc83561d9c5 /PCbuild | |
parent | c92ef6fe0e1384c090b94143cdc01e5e114a8747 (diff) | |
download | cpython-5e4af2a3e90d78fdf6a4cc42e0472576b1f2b975.zip cpython-5e4af2a3e90d78fdf6a4cc42e0472576b1f2b975.tar.gz cpython-5e4af2a3e90d78fdf6a4cc42e0472576b1f2b975.tar.bz2 |
gh-106320: Move private _PySet API to the internal API (#107041)
* Add pycore_setobject.h header file.
* Move the following API to the internal C API:
* _PySet_Dummy
* _PySet_NextEntry()
* _PySet_Update()
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 0fe2408..bfe59ac 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -261,6 +261,7 @@ <ClInclude Include="..\Include\internal\pycore_runtime.h" /> <ClInclude Include="..\Include\internal\pycore_runtime_init.h" /> <ClInclude Include="..\Include\internal\pycore_runtime_init_generated.h" /> + <ClInclude Include="..\Include\internal\pycore_setobject.h" /> <ClInclude Include="..\Include\internal\pycore_signal.h" /> <ClInclude Include="..\Include\internal\pycore_sliceobject.h" /> <ClInclude Include="..\Include\internal\pycore_strhex.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 2b3793c..0a8b0c3 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -687,6 +687,9 @@ <ClInclude Include="..\Include\internal\pycore_runtime_init_generated.h"> <Filter>Include\internal</Filter> </ClInclude> + <ClInclude Include="..\Include\internal\pycore_setobject.h"> + <Filter>Include\internal</Filter> + </ClInclude> <ClInclude Include="..\Include\internal\pycore_signal.h"> <Filter>Include\internal</Filter> </ClInclude> |