[issue6865] Refcount error in pwd module

2009-09-09 Thread Benjamin Peterson
Benjamin Peterson added the comment: 2009/9/9 caglar10ur : > > caglar10ur added the comment: > > It seems Python 2.6.x also have same problem, will it be merged > automatically (seems like svn-merge is used for this purpose) or do you > want me to open a new bug against that version? It's now

[issue6865] Refcount error in pwd module

2009-09-09 Thread caglar10ur
caglar10ur added the comment: It seems Python 2.6.x also have same problem, will it be merged automatically (seems like svn-merge is used for this purpose) or do you want me to open a new bug against that version? -- ___ Python tracker

[issue6865] Refcount error in pwd module

2009-09-08 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r74727. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue6865] Refcount error in pwd module

2009-09-08 Thread caglar10ur
New submission from caglar10ur : Fix refcounting problem which causes a segfault for following test code; #include int main(void) { int i; for (i = 0; i < 1000; ++i) { Py_Initialize(); PyRun_SimpleString("impo