[issue6811] add a filename argument to marshal.load*

2011-03-23 Thread Brett Cannon
Brett Cannon added the comment: I went with a different solution as backwards-compatibility dictates a solution that is not as complete as one might do with an argument to marshal. -- resolution: -> wont fix stage: test needed -> committed/rejected status: open -> closed

[issue6811] add a filename argument to marshal.load*

2011-03-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5deb2094f033 by Brett Cannon in branch 'default': Make importlib compatible with __import__ by "fixing" code.co_filename http://hg.python.org/cpython/rev/5deb2094f033 -- nosy: +python-dev ___ Python trac

[issue6811] add a filename argument to marshal.load*

2010-08-06 Thread Brett Cannon
Changes by Brett Cannon : -- versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue6811] add a filename argument to marshal.load*

2010-08-06 Thread Mark Lawrence
Mark Lawrence added the comment: Just flagging this up in case it's dropped under the radar. -- nosy: +BreamoreBoy ___ Python tracker ___

[issue6811] add a filename argument to marshal.load*

2009-09-07 Thread Frank Wierzbicki
Changes by Frank Wierzbicki : -- nosy: +fwierzbicki ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue6811] add a filename argument to marshal.load*

2009-08-31 Thread Fred L. Drake, Jr.
Changes by Fred L. Drake, Jr. : -- nosy: +fdrake ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue6811] add a filename argument to marshal.load*

2009-08-31 Thread Brett Cannon
New submission from Brett Cannon : For compatibility w/ import, importlib needs the ability to set code.co_filename to the actual location of the bytecode used to create a module and not the path embedded in the marshal data. But since co_filename is read-only it can't be done at the moment.