Yappi 1.2.1 released (async. code profiling improvements)

2019-12-13 Thread Sümer Cip
/yappi/ Happy profiling! Sümer Cip -- Python-announce-list mailing list -- python-announce-list@python.org To unsubscribe send an email to python-announce-list-le...@python.org https://mail.python.org/mailman3/lists/python-announce-list.python.org/ Support the Python Software Foundation

[issue26278] BaseTransport.close() does not trigger connection_lost()

2019-11-19 Thread Sümer Cip
Sümer Cip added the comment: Closing the issue seems like a good idea: as it seems nobody seems to have spotted similar issue and I have only been able to reproduce it in Python 3.4. Just for future ref.: The uncommon thing is that the server I was using is a TCP game server holding long

[issue38522] Py_USING_MEMORY_DEBUGGER is referenced in docs but not present in code

2019-10-18 Thread Sümer Cip
Change by Sümer Cip : -- versions: +Python 2.7, Python 3.5 ___ Python tracker <https://bugs.python.org/issue38522> ___ ___ Python-bugs-list mailing list Unsub

[issue38522] Py_USING_MEMORY_DEBUGGER is referenced in docs but not present in code

2019-10-18 Thread Sümer Cip
New submission from Sümer Cip : Hi all, While trying to debug Python C extension via valgrind, I was reading the document Misc/README.valgrind and it seems there are some parts not being uptodate. There is comments comments like following: Uncomment Py_USING_MEMORY_DEBUGGER in Objects

[issue26278] BaseTransport.close() does not trigger connection_lost()

2019-05-07 Thread Sümer Cip
Sümer Cip added the comment: I do not know I still have the issue since I have circumvented the problem. I have been using Python3.4, I think it was one of the earliest asyncio implementations. The way it can be reproduced is as following: 1) There are lots of active TCP connections

[issue26278] BaseTransport.close() does not trigger connection_lost()

2016-02-03 Thread Sümer Cip
New submission from Sümer Cip: Hi all, We have implemented a TCP server based on asyncio. And while doing some regression tests we randomly see following error: 1) Client connects to the server. 2) Client is closed ungracefully(without sending a FIN, deplug cable) 3) We have a custom PING

PyCTrie

2015-07-29 Thread Sümer Cip
) operations. - Supports Python 2.6 = x = 3.4 P.S: I have tried hard to make generator support on all suffix/prefix/correct operations without additional memory. -- Sümer Cip -- https://mail.python.org/mailman/listinfo/python-announce-list Support the Python Software Foundation

ANN: Yappi 0.82

2014-01-21 Thread Sümer Cip
://code.google.com/p/yappi/ -- Sümer Cip -- https://mail.python.org/mailman/listinfo/python-announce-list Support the Python Software Foundation: http://www.python.org/psf/donations/

ANN: yappi 0.1 beta : Yet Another Python Profiler

2009-10-11 Thread Sümer Cip
Hi all, After implementing a game server on which 100k people playing games per-day, it turns out to be that continuous and efficient profiling is key to improve an long-running applications like these. With this idea in mind, I am motivated to write a profiler. I am not a Python expert or even