[issue39365] Support (SEEK_END/SEEK_CUR) relative seeking in StringIO
sanket added the comment: can you provide more details? Python version and code/steps to reproduce. That'd be more helpful as it seems the methods are already implemented in latest version https://docs.python.org/3/library/io.html#io.TextIOBase.seek -- nosy: +sanketplus ___ Python tracker <https://bugs.python.org/issue39365> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue30921] Process in not get killed using subprocess.call() in python thread
New submission from Sanket: import threading import subprocess def B(): while True: break cmd="ps -ef | grep 'shell' | awk '{print $2}' | xargs kill -9" subprocess.call(cmd, shell=True) def A(): th = threading.Thread(target=B) th.start() In above code, process with name "shell" have to killed, but its not working. While same when I do in simple without thread, its working -- components: Library (Lib) messages: 298288 nosy: sanky8793 priority: normal severity: normal status: open title: Process in not get killed using subprocess.call() in python thread type: behavior versions: Python 2.7 ___ Python tracker <http://bugs.python.org/issue30921> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue30921] Process in not get killed using subprocess.call() in python thread
Changes by Sanket : -- nosy: +djc, gvanrossum -sanky8793 ___ Python tracker <http://bugs.python.org/issue30921> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue30921] Process in not get killed using subprocess.call() in python thread
Changes by Sanket : -- nosy: +lars.gustaebel, lemburg, pedronis ___ Python tracker <http://bugs.python.org/issue30921> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue30921] Process in not get killed using subprocess.call() in python thread
Changes by Sanket : -- nosy: +terry.reedy ___ Python tracker <http://bugs.python.org/issue30921> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue30922] Process in not get killed using subprocess.call() in python thread
New submission from Sanket: import threading import subprocess def B(): while True: break cmd="ps -ef | grep 'shell' | awk '{print $2}' | xargs kill -9" subprocess.call(cmd, shell=True) def A(): th = threading.Thread(target=B) th.start() In above code, process with name "shell" has to be killed, but its not working. While same when I do in simple without thread, its working Why you are not answering here,at last I just had to deal with answer whether its getting here or else where -- components: Library (Lib) messages: 298293 nosy: gvanrossum, sanky8793 priority: normal severity: normal status: open title: Process in not get killed using subprocess.call() in python thread type: behavior versions: Python 2.7, Python 3.3 ___ Python tracker <http://bugs.python.org/issue30922> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue30922] Process in not get killed using subprocess.call() in python thread
Sanket added the comment: Can i get solution here -- ___ Python tracker <http://bugs.python.org/issue30922> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue38628] Issue with ctypes in AIX
Change by Sanket Rathi : -- nosy: +sanket ___ Python tracker <https://bugs.python.org/issue38628> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue41540] Test test_maxcontext_exact_arith (_decimal) consumes all memory on AIX
Change by Sanket Rathi : -- nosy: +sanket ___ Python tracker <https://bugs.python.org/issue41540> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue30085] Discourage operator.__dunder__ functions
Changes by Sanket Dasgupta : -- pull_requests: +1301 ___ Python tracker <http://bugs.python.org/issue30085> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue30085] Discourage operator.__dunder__ functions
Sanket Dasgupta added the comment: @terry, I have updated the same, thanks! -- nosy: +sanketdg ___ Python tracker <http://bugs.python.org/issue30085> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue21056] csv documentation is incorrect
Sanket Dasgupta added the comment: Hi, I am looking to fix this bug. So as per the discussion, should I remove the documentation of __next__() ? -- nosy: +sanketdg ___ Python tracker <http://bugs.python.org/issue21056> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com