8000 gh-125729: Makes the presence of the :mod:`turtle` module dependent on the Tcl/Tk installer option. by CoderTCY · Pull Request #126176 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-125729: Makes the presence of the :mod:turtle module dependent on the Tcl/Tk installer option. #126176

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Nov 19, 2024
Next Next commit
Update tcltk.wixproj
Add turtle.py
  • Loading branch information
CoderTCY authored Oct 30, 2024
commit dc292aad82d3f9d24e8f3167efb00ffc621861a9
4 changes: 2 additions & 2 deletions Tools/msi/tcltk/tcltk.wixproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<Group>tcltk_lib</Group>
</InstallFiles>

<InstallFiles Include="$(PySourcePath)Lib\tkinter\**\*;$(PySourcePath)Lib\idlelib\**\*;$(PySourcePath)Lib\turtledemo\**\*"
<InstallFiles Include="$(PySourcePath)Lib\tkinter\**\*;$(PySourcePath)Lib\idlelib\**\*;$(PySourcePath)Lib\turtledemo\**\*;$(PySourcePath)Lib\turtle.py"
Exclude="$(PySourcePath)Lib\**\*.pyc;$(PySourcePath)Lib\**\*.pyo">
<SourceBase>$(PySourcePath)</SourceBase>
<Source>!(bindpath.src)</Source>
Expand All @@ -39,4 +39,4 @@
</ItemGroup>

<Import Project="..\msi.targets" />
</Project>
</Project>
0