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
8c7c56e7
Commit
8c7c56e7
authored
Mar 05, 2006
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add _msi.pyd.
Add warning on Win9x.
parent
d149c21d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
Tools/msi/msi.py
Tools/msi/msi.py
+6
-0
No files found.
Tools/msi/msi.py
View file @
8c7c56e7
...
@@ -107,6 +107,7 @@ extensions = [
...
@@ -107,6 +107,7 @@ extensions = [
'_ssl.pyd'
,
'_ssl.pyd'
,
'_testcapi.pyd'
,
'_testcapi.pyd'
,
'_tkinter.pyd'
,
'_tkinter.pyd'
,
'_msi.pyd'
,
]
]
if
major
+
minor
<=
"24"
:
if
major
+
minor
<=
"24"
:
...
@@ -485,6 +486,11 @@ def add_ui(db):
...
@@ -485,6 +486,11 @@ def add_ui(db):
" shared Windows expertise, Python for Windows
\
n
"
" shared Windows expertise, Python for Windows
\
n
"
" would still be Python for DOS."
)
" would still be Python for DOS."
)
c
=
exit_dialog
.
text
(
"warning"
,
135
,
200
,
220
,
40
,
0x30003
,
"{
\
\
VerdanaRed9}Warning: Python 2.5.x is the last "
"Python release for Windows 9x."
)
c
.
condition
(
"Hide"
,
"NOT Version9x"
)
exit_dialog
.
text
(
"Description"
,
135
,
235
,
220
,
20
,
0x30003
,
exit_dialog
.
text
(
"Description"
,
135
,
235
,
220
,
20
,
0x30003
,
"Click the Finish button to exit the Installer."
)
"Click the Finish button to exit the Installer."
)
c
=
exit_dialog
.
next
(
"Finish"
,
"Cancel"
,
name
=
"Finish"
)
c
=
exit_dialog
.
next
(
"Finish"
,
"Cancel"
,
name
=
"Finish"
)
...
...
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