Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
P
pykd-ext
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Todd Hartman
pykd-ext
Commits
e43d5c39
Commit
e43d5c39
authored
Dec 12, 2019
by
ussrhero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
set prefered python to 3.8
parent
4889327b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
sources/windbgext.cpp
sources/windbgext.cpp
+4
-4
No files found.
sources/windbgext.cpp
View file @
e43d5c39
...
...
@@ -18,8 +18,8 @@
//////////////////////////////////////////////////////////////////////////////
static
int
defaultMajorVersion
=
2
;
static
int
defaultMinorVersion
=
7
;
static
int
defaultMajorVersion
=
3
;
static
int
defaultMinorVersion
=
8
;
//////////////////////////////////////////////////////////////////////////////
...
...
@@ -736,7 +736,7 @@ void getDefaultPythonVersion(int& majorVersion, int& minorVersion)
for
(
auto
interpret
:
interpreterList
)
{
if
(
2
==
interpret
.
majorVersion
&&
minorVersion
<=
interpret
.
minorVersion
)
if
(
3
==
interpret
.
majorVersion
&&
minorVersion
<=
interpret
.
minorVersion
)
{
found
=
true
;
majorVersion
=
interpret
.
majorVersion
;
...
...
@@ -749,7 +749,7 @@ void getDefaultPythonVersion(int& majorVersion, int& minorVersion)
for
(
auto
interpret
:
interpreterList
)
{
if
(
3
==
interpret
.
majorVersion
&&
minorVersion
<=
interpret
.
minorVersion
)
if
(
2
==
interpret
.
majorVersion
&&
minorVersion
<=
interpret
.
minorVersion
)
{
found
=
true
;
majorVersion
=
interpret
.
majorVersion
;
...
...
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