[issue5557] Byte-code compilation uses excessive memory

2012-05-07 Thread Zhiping Deng
Changes by Zhiping Deng kofreesty...@gmail.com: -- nosy: +Zhiping.Deng ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5557 ___ ___ Python-bugs-list

[issue13703] Hash collision security issue

2012-01-03 Thread Zhiping Deng
Changes by Zhiping Deng kofreesty...@gmail.com: -- nosy: +Zhiping.Deng ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13703 ___ ___ Python-bugs

[issue13668] mute ImportError in __del__ of _threading_local module

2011-12-28 Thread Zhiping Deng
New submission from Zhiping Deng kofreesty...@gmail.com: If python was configured without-threads: % ./python Python 2.7.2+ (2.7:e71e4bd45c89, Dec 28 2011, 21:03:59) [GCC 4.4.3] on linux2 Type help, copyright, credits or license for more information. import dummy_threading as _threading

[issue12612] Valgrind suppressions

2011-12-01 Thread Zhiping Deng
Zhiping Deng kofreesty...@gmail.com added the comment: It works for me! -- nosy: +Zhiping.Deng ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12612

[issue12224] problem with siginterrupt

2011-06-04 Thread Zhiping Deng
Zhiping Deng kofreesty...@gmail.com added the comment: I think the problem is that after a user calles signal.siginterrupt(False), he would expect that the socket.recv should handles EINTR properly for him because it's the behaviour in c level. He doesn't know socket.recv() calles select(2

[issue12224] problem with siginterrupt

2011-05-31 Thread Zhiping Deng
New submission from Zhiping Deng kofreesty...@gmail.com: If socket timeout 0, then there is no way to automatically restart some socket calls like recv(). Calling siginterrupt(False) is useless, because python calls internal_select() if socket has timeout, and select returns error(EINTR) once

[issue11865] typo in Py_AddPendingCall document

2011-04-18 Thread Zhiping Deng
New submission from Zhiping Deng kofreesty...@gmail.com: http://docs.python.org/c-api/init.html?highlight=py_addpendingcall#Py_AddPendingCall void Py_AddPendingCall(int (*func)(void *, void *arg)) which should be void Py_AddPendingCall(int (*func)(void *), void *arg) -- assignee: docs