Re: [Python-Dev] I plan to push faulthandler into Python 3.3 in one week

2011-03-25 Thread Victor Stinner
Le jeudi 24 mars 2011 à 00:49 +0100, Victor Stinner a écrit : > If nobody complains, I plan to push my faulthandler module into Python > 3.3 in one week. It's a module to display the Python backtrace on a > segfault, on a user signal or after a timeout. I created a feature repo to prepare the work

Re: [Python-Dev] I plan to push faulthandler into Python 3.3 in one week

2011-03-23 Thread Victor Stinner
Le jeudi 24 mars 2011 à 01:05 +0100, "Martin v. Löwis" a écrit : > > What is the procedure to add a new module? Just add the code into > > Modules and patch setup.py? The module is distributed under the BSD > > (2-clause) license. > > Also add it to the Visual Studio build process. It either needs

Re: [Python-Dev] I plan to push faulthandler into Python 3.3 in one week

2011-03-23 Thread Michael Foord
On 24/03/2011 00:05, "Martin v. Löwis" wrote: What is the procedure to add a new module? Just add the code into Modules and patch setup.py? The module is distributed under the BSD (2-clause) license. Also add it to the Visual Studio build process. It either needs to go into pythonXY.dll (i.e. py

Re: [Python-Dev] I plan to push faulthandler into Python 3.3 in one week

2011-03-23 Thread Martin v. Löwis
> What is the procedure to add a new module? Just add the code into > Modules and patch setup.py? The module is distributed under the BSD > (2-clause) license. Also add it to the Visual Studio build process. It either needs to go into pythonXY.dll (i.e. pythoncore.vcproj), or into a separate proje

[Python-Dev] I plan to push faulthandler into Python 3.3 in one week

2011-03-23 Thread Victor Stinner
Hi, If nobody complains, I plan to push my faulthandler module into Python 3.3 in one week. It's a module to display the Python backtrace on a segfault, on a user signal or after a timeout. I opened an issue (#11393) for that, 3 weeks ago, and I already got some interesting comments. I fixed some