]> granicus.if.org Git - python/commit
bpo-31683: Py_FatalError() now supports long error messages (#3878)
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 4 Oct 2017 16:50:12 +0000 (09:50 -0700)
committerGitHub <noreply@github.com>
Wed, 4 Oct 2017 16:50:12 +0000 (09:50 -0700)
commit8d5a3aad2f805dc0ea40829b751f58aa6c75305d
treed1c013d5c455e9986da953750602bbee8859fbac
parentbf477a99e0c85258e6573f4ee9eda68fa1f98a31
bpo-31683: Py_FatalError() now supports long error messages (#3878)

On Windows, Py_FatalError() now limits the size to 256 bytes of the
buffer used to call OutputDebugStringW(). Previously, the size
depended on the length of the error message.
Python/pylifecycle.c