New submission from Arfrever Frehtes Taifersar Arahesis:
#include <Python.h>
#include <stdlib.h>
int main()
{
int i;
for (i = 0; i < 100; i++) {
printf("%d\n", i);
Py_Initialize();
Py_Finalize();
}
return 0;
}
The above code succeeds with Python 3.2, but causes segmentation fault with
Python 3.3:
$ ./reinitializations
0
1
2
3
4
5
6
7
8
9
Segmentation fault
$
----------
keywords: 3.3regression
messages: 170349
nosy: Arfrever
priority: high
severity: normal
status: open
title: Segmentation fault after multiple reinitializations
versions: Python 3.3
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue15926>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com