Staging
v0.5.1
https://github.com/python/cpython
Revision a36adfa6bbf5e612a4d4639124502135690899b8 authored by Victor Stinner on 19 March 2020, 18:48:25 UTC, committed by GitHub on 19 March 2020, 18:48:25 UTC
bpo-39877, bpo-40010: Add a third tstate_must_exit() check in
take_gil() to prevent using tstate which has been freed.
1 parent c691f20
Raw File
Tip revision: a36adfa6bbf5e612a4d4639124502135690899b8 authored by Victor Stinner on 19 March 2020, 18:48:25 UTC
bpo-39877: 4th take_gil() fix for daemon threads (GH-19080)
Tip revision: a36adfa
idle.bat
@echo off
rem start idle
rem Usage:  idle [-d]
rem -d   Run Debug build (python_d.exe).  Else release build.

setlocal
set exe=win32\python
PATH %PATH%;..\externals\tcltk\bin

if "%1"=="-d" (set exe=%exe%_d) & shift

set cmd=%exe% ../Lib/idlelib/idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9

echo on
%cmd%
back to top