Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
a75971da
Commit
a75971da
authored
Mar 02, 2014
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #14512: Launch pydoc -b instead of pydocgui.pyw on Windows.
parent
4b338dde
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
Misc/NEWS
Misc/NEWS
+2
-0
Tools/msi/msi.py
Tools/msi/msi.py
+2
-2
No files found.
Misc/NEWS
View file @
a75971da
...
...
@@ -42,6 +42,8 @@ Tests
Build
-----
-
Issue
#
14512
:
Launch
pydoc
-
b
instead
of
pydocgui
.
pyw
on
Windows
.
-
Issue
#
20748
:
Uninstalling
pip
does
not
leave
behind
the
pyc
of
the
uninstaller
anymore
.
...
...
Tools/msi/msi.py
View file @
a75971da
...
...
@@ -1324,8 +1324,6 @@ def add_registry(db):
tcltkshortcuts
=
[
(
"IDLE"
,
"MenuDir"
,
"IDLE|IDLE (Python GUI)"
,
"pythonw.exe"
,
tcltk
.
id
,
r'"[TARGETDIR]Lib\
idleli
b\
idle.pyw
"'
,
None
,
None
,
"python_icon.exe"
,
0
,
None
,
"TARGETDIR"
),
(
"PyDoc"
,
"MenuDir"
,
"MODDOCS|Module Docs"
,
"pythonw.exe"
,
tcltk
.
id
,
r'"[TARGETDIR]Tools\
sc
ripts\
pydocgui.pyw
"'
,
None
,
None
,
"python_icon.exe"
,
0
,
None
,
"TARGETDIR"
),
]
add_data
(
db
,
"Shortcut"
,
tcltkshortcuts
+
...
...
@@ -1340,6 +1338,8 @@ def add_registry(db):
(
"Manual"
,
"MenuDir"
,
"MANUAL|Python Manuals"
,
"REGISTRY.doc"
,
"[#%s]"
%
docfile
,
None
,
None
,
None
,
None
,
None
,
None
,
None
),
(
"PyDoc"
,
"MenuDir"
,
"MODDOCS|Module Docs"
,
"python.exe"
,
default_feature
.
id
,
r'-m pydoc -b'
,
None
,
None
,
"python_icon.exe"
,
0
,
None
,
"TARGETDIR"
),
(
"Uninstall"
,
"MenuDir"
,
"UNINST|Uninstall Python"
,
"REGISTRY"
,
SystemFolderName
+
"msiexec"
,
"/x%s"
%
product_code
,
None
,
None
,
None
,
None
,
None
,
None
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment