[issue4963] mimetypes.guess_extension result changes after mimetypes.init()

2015-10-25 Thread Marcin Szewczyk
Changes by Marcin Szewczyk <wod...@gmail.com>: -- nosy: +wodny ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue4963> ___ __

[issue24654] PEP 492 - example benchmark doesn't work (TypeError)

2015-07-19 Thread Marcin Szewczyk
Marcin Szewczyk added the comment: Thanks for the update. Regarding the plain generator part -- am I right thinking it's simply a generator not decorated with @asyncio.coroutine? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org

[issue24654] PEP 492 - example benchmark doesn't work (TypeError)

2015-07-17 Thread Marcin Szewczyk
New submission from Marcin Szewczyk: Using benchmark from the section https://www.python.org/dev/peps/pep-0492/#async-await raises: Traceback (most recent call last): File ./bench.py, line 28, in module timeit(abinary, 19, 30) File ./bench.py, line 23, in timeit list(gen(depth

[issue21324] dbhash leaks random memory fragments to a database

2014-04-21 Thread Marcin Szewczyk
New submission from Marcin Szewczyk: As stated in the subject. Example is in a remote Git repository: https://bitbucket.org/wodny/python-dbm-experiments/ It shows how some random data gets into the database (into some gaps between keys and values). There is also a C example which hasn't been

[issue17018] Inconsistent behaviour of methods waiting for child process

2013-01-23 Thread Marcin Szewczyk
New submission from Marcin Szewczyk: I've done some experiments with: 1) multiprocessing.Process.join() 2) os.waitpid() 3) subprocess.Popen.wait() These three methods behave completely different when interrupted with a signal which I find disturbing. Reactions are: 1) exit with no exception