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
aab9f46c
Commit
aab9f46c
authored
Dec 26, 2015
by
Vinay Sajip
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Closes #25789: Improved buffering behaviour in launcher.
parent
f9253c96
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
PC/launcher.c
PC/launcher.c
+3
-2
No files found.
PC/launcher.c
View file @
aab9f46c
...
...
@@ -98,7 +98,7 @@ error(int rc, wchar_t * format, ... )
MessageBox
(
NULL
,
message
,
TEXT
(
"Python Launcher is sorry to say ..."
),
MB_OK
);
#endif
ExitProcess
(
rc
);
exit
(
rc
);
}
/*
...
...
@@ -652,7 +652,7 @@ run_child(wchar_t * cmdline)
if
(
!
ok
)
error
(
RC_CREATE_PROCESS
,
L"Failed to get exit code of process"
);
debug
(
L"child process exit code: %d
\n
"
,
rc
);
ExitProcess
(
rc
);
exit
(
rc
);
}
static
void
...
...
@@ -1357,6 +1357,7 @@ process(int argc, wchar_t ** argv)
wchar_t
*
av
[
2
];
#endif
setvbuf
(
stderr
,
(
char
*
)
NULL
,
_IONBF
,
0
);
wp
=
get_env
(
L"PYLAUNCH_DEBUG"
);
if
((
wp
!=
NULL
)
&&
(
*
wp
!=
L'\0'
))
log_fp
=
stderr
;
...
...
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