diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-03-01 16:52:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-01 16:52:56 (GMT) |
commit | 91b9ecf82c3287b45f39158c5134a87414ff26bc (patch) | |
tree | 0b5f267a09b1300eca85d7480d200609aadba746 /PCbuild | |
parent | c991f2415d4eef663039a83125aa6aad81672680 (diff) | |
download | cpython-91b9ecf82c3287b45f39158c5134a87414ff26bc.zip cpython-91b9ecf82c3287b45f39158c5134a87414ff26bc.tar.gz cpython-91b9ecf82c3287b45f39158c5134a87414ff26bc.tar.bz2 |
bpo-36142: Add preconfig.c (GH-12128)
* Add _PyArgv_Decode() function
* Move _Py_ClearFileSystemEncoding() and _Py_SetFileSystemEncoding()
to preconfig.c.
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 1ec5f75..992c84f 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -425,6 +425,7 @@ <ClCompile Include="..\Python\mystrtoul.c" /> <ClCompile Include="..\Python\pathconfig.c" /> <ClCompile Include="..\Python\peephole.c" /> + <ClCompile Include="..\Python\preconfig.c" /> <ClCompile Include="..\Python\pyarena.c" /> <ClCompile Include="..\Python\pyctype.c" /> <ClCompile Include="..\Python\pyfpe.c" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 5053dcf..293bded 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -989,6 +989,9 @@ <ClCompile Include="..\Python\peephole.c"> <Filter>Python</Filter> </ClCompile> + <ClCompile Include="..\Python\preconfig.c"> + <Filter>Python</Filter> + </ClCompile> <ClCompile Include="..\Python\pyarena.c"> <Filter>Python</Filter> </ClCompile> |