[issue13418] Embedded Python memory leak

2011-11-16 Thread Asesh
New submission from Asesh aseshsh...@gmail.com: Well I just finished embedding Python in my application but even after calling Py_Finalize the debugger shows tons of memory leak. I just called Py_Initialize and then Py_Finalize then after exiting the application, the Visual C++ debugger shows

[issue13418] Embedded Python memory leak

2011-11-16 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: (The project example uses _CrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF | _CRTDBG_ALLOC_MEM_DF) to perform memory leak check.) -- nosy: +haypo ___ Python tracker rep...@bugs.python.org

[issue706546] u''.translate not documented

2011-11-16 Thread Joshua Bleecher Snyder
Joshua Bleecher Snyder joshar...@gmail.com added the comment: This documentation change didn't make it into the docs for translate in the string module -- see http://docs.python.org/library/string.html. It'd be great to add it there as well, as I just got bitten by this. :) -- nosy:

[issue12627] Implement PEP 394: The python Command on Unix-Like Systems

2011-11-16 Thread Nick Coghlan
Changes by Nick Coghlan ncogh...@gmail.com: -- nosy: +ncoghlan ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12627 ___ ___ Python-bugs-list

[issue13418] Embedded Python memory leak

2011-11-16 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: -- nosy: +jcea ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13418 ___ ___ Python-bugs-list mailing list

[issue6715] xz compressor support

2011-11-16 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: I wrote a short review on http://bugs.python.org/review/6715/show -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6715 ___

[issue13419] import does not recognise SYMLINKDs on Windows 7

2011-11-16 Thread Alex Regueiro
New submission from Alex Regueiro alex...@gmail.com: Python 2.7 normally inputs directory-modules fine on Windows 7. The notable exception however is symbolically-linked directories on the filesystem, which are ignored (not thought to exist) by the Python `import` statement. (Note that the

[issue12013] file /usr/local/lib/python3.1/lib-dynload/_socket.so: symbol inet_aton: referenced symbol not found

2011-11-16 Thread Per Rosengren
Per Rosengren per.roseng...@gmail.com added the comment: On Linux: nm -C /lib/libc.so.6 |grep ' inet_aton' 000cbce0 W inet_aton This means that when Python is build with GCC (like on linux), inet_aton is in system libc. If you build with GCC in solaris, inet_aton will be taken from

<    1   2