[New-bugs-announce] [issue10082] PyRun_SimpleFile crashes application

Valery Lesin report at bugs.python.org
Wed Oct 13 10:50:03 CEST 2010


New submission from Valery Lesin <valery.lesin at gmail.com>:

All the functions in Python/C API for file execution (like PyRun_SimpleFile) crash the application.

Some thoughts about problem: these functions use FILE* as first parameter which is binary incompatible with different CRT (python.dll and application could use different ones). 

Some thoughts about solution: maybe it's possible to pass only filename and python will open (and close) file itself? Second idea is to use functions like PyFile_FromString (like in Python 2)

----------
components: Extension Modules, Windows
messages: 118506
nosy: Valery.Lesin
priority: normal
severity: normal
status: open
title: PyRun_SimpleFile crashes application
type: crash
versions: Python 3.1

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue10082>
_______________________________________


More information about the New-bugs-announce mailing list