[issue38988] Killing asyncio subprocesses on timeout?

2019-12-06 Thread dontbugme
New submission from dontbugme : I'm trying to use asyncio.subproceess and am having difficulty killing the subprocesses after timeout. My use case is launching processes that hold on to file handles and other exclusive resources, so subsequent processes can only be launched after the first

[issue28758] UnicodeDecodeError: 'gbk' codec can't decode byte 0xab in position 74: illegal multibyte sequence

2016-11-20 Thread dontbugme
New submission from dontbugme: you can see https://github.com/mintty/mintty/issues/609 os.popen('chcp 65001 && ' + JAVA + ' -jar ' + CHECKSTYLE_JAR + ' -c ' + CHECKSTYLE_XML + ' "%s/%s"' % (COMMIT_TEMP_DIT, changed)).read() -- messages: 281322 nosy: dontbugme priorit

[issue6792] Distutils-based installer does not detect 64bit versions of Python

2010-10-02 Thread dontbugme
dontbugme pythonbugsbugme...@spamavert.com added the comment: you can add InstallPath key with the corresponding value at [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Python\PythonCore\2.6\] if you want disutils installer to detect your python That makes him detect and install the librarys

[issue7680] pythonw crash while attempting to start() a thread object

2010-01-17 Thread dontbugme
dontbugme pythonbugsbugme...@spamavert.com added the comment: After asking at the IRC channel, posborne resolved the error: posborne Also, the behaviour of exiting the main thread before all threads has exited is undefined. Is the behaviour different if you add t.join() to the end

[issue7680] pythonw crash while attempting to start() a thread object

2010-01-12 Thread dontbugme
dontbugme pythonbugsbugme...@spamavert.com added the comment: I did not understand the question. If you were meaning running a plain print(), then it does work: #!/usr/bin/env python print foo IDLE 2.6.4 No Subprocess foo Well, as you suggested the problem most probably

[issue7680] pythonw crash while attempting to start() a thread object

2010-01-11 Thread dontbugme
New submission from dontbugme pythonbugsbugme...@spamavert.com: PythonW.exe crash, tested under Windows 7 x86 / x64, Python v2.6.4. The crash can be reproduced by opening and running the attached code in IDLE. TY! Error Message: Microsoft Visual C++ Runtime Library Runtime Error! Program: C

[issue7394] sqlite3: some OperationalError exceptions should be ProgrammingError (PEP 249)

2009-11-25 Thread dontbugme
New submission from dontbugme pythonbugsbugme...@spamavert.com: The following code raises OperationalError exceptions: python -c 'import sqlite3; sqlite3.connect(:memory:).execute(bad syntax)' python -c 'import sqlite3; sqlite3.connect(:memory:).execute(SELECT * FROM no_such_table)' python -c

[issue6735] restype pointer to Structure subclass never initialized

2009-08-19 Thread dontbugme
New submission from dontbugme pythonbugsbugme...@spamavert.com: So, say I'm sub-classing ctypes.Structure with a class: MyClass. I define __init__() in MyClass.. If I explicitly instantiate MyClass(), then the __init__() is properly executed as expected. But say I have a CFUNCTYPE where I set

[issue5993] python produces zombie in webbrowser.open

2009-05-10 Thread dontbugme
New submission from dontbugme pythonbugsbugme...@spamavert.com: the webbrowser library produces a zombie process when opening urls. please see http://dev.deluge-torrent.org/ticket/928 and the original bug report (by me) on ubuntu's launchpad (https:// bugs.launchpad.net/bugs/313149) for details

[issue4772] undesired switch fall-through in socketmodule.c

2008-12-29 Thread dontbugme
New submission from dontbugme pythonbugsbugme...@spamavert.com: makesockaddr() in socketmodule.c will fall through from AF_BLUETOOTH to AF_PACKET if none of Bluetooth protocols match. That's not a very appropriate thing to do. -- messages: 78483 nosy: dontbugme severity: normal status