New submission from Josh Triplett <j...@joshtriplett.org>:

PEP 304 provides a runtime option to avoid saving generating bytecode files.  
However, for embedded usage, it would help to have a compile-time option to 
remove all the file-writing code entirely, hardcoding PYTHONBYTECODEBASE="".  I 
ran into this when porting Python to an embedded platform, which will never 
support any form of filesystem write operations; currently, I have to provide 
dummy functions for writing files, which error out when attempting to write to 
anything other than stdout or stderr.

----------
components: Build
messages: 136056
nosy: joshtriplett
priority: normal
severity: normal
status: open
title: Compile-time option to avoid writing files, including generated bytecode
type: compile error
versions: Python 2.7

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue12083>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to