April 9, 2008
2:40 p.m.
Hi Bruno, On Tue, Apr 08, 2008 at 08:15:29PM -0300, Bruno Gola wrote:
This are the features from 2.4 sys that are not present in PyPy's sys: - exc_type
Actually, exc_type, exc_value and exc_traceback are present in PyPy's sys module but they are not in sys.__dict__. There is a __getattr__ handler on the sys module that provides these attributes in a thread-safe way.
- pydebug
Where does this come from? It is not in my Python 2.4 either. A bientot, Armin.