[issue5557] Byte-code compilation uses excessive memory

2012-05-07 Thread Zhiping Deng
Changes by Zhiping Deng : -- nosy: +Zhiping.Deng ___ Python tracker <http://bugs.python.org/issue5557> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13703] Hash collision security issue

2012-01-03 Thread Zhiping Deng
Changes by Zhiping Deng : -- nosy: +Zhiping.Deng ___ Python tracker <http://bugs.python.org/issue13703> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13668] mute ImportError in __del__ of _threading_local module

2011-12-28 Thread Zhiping Deng
New submission from Zhiping Deng : 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. >&g

[issue12612] Valgrind suppressions

2011-12-01 Thread Zhiping Deng
Zhiping Deng added the comment: It works for me! -- nosy: +Zhiping.Deng ___ Python tracker <http://bugs.python.org/issue12612> ___ ___ Python-bugs-list mailin

[issue12224] problem with siginterrupt

2011-06-04 Thread Zhiping Deng
Zhiping Deng 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) interna

[issue12224] problem with siginterrupt

2011-05-31 Thread Zhiping Deng
New submission from Zhiping Deng : 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 interrupted b

[issue11865] typo in Py_AddPendingCall document

2011-04-17 Thread Zhiping Deng
New submission from Zhiping Deng : 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@python components