Eric Snow added the comment:

Brett: looks like something frozen-related broke due to 6d1656ab2c85a527c.

test_frozen in test_frozen.py is failing now because frozen modules no longer 
have a __cached__ attribute (which was previously set to None).  Previously it 
was set in PyImport_ExecCodeModuleObject() in import.c.  I'm guessing that 
simply setting __cached__ (and __file__?) in FrozenImporter.exec_module() 
should restore the previous behavior.  Doing so makes the test pass at least.

----------

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

Reply via email to