[issue26731] subprocess on windows leaks stdout/stderr handle to child process when stdout/stderr overridden

2016-04-10 Thread Sai
Sai added the comment: You can workaround this problem by adding a middleman process that sets close_fds=True: ### childworkaround.py # import os import subprocess with open(os.devnull, 'w') as devnull: script = "import subprocess; import sys; subprocess.

[issue21991] The new email API should use MappingProxyType instead of returning new dicts.

2014-09-25 Thread Sai Krishna
Changes by Sai Krishna saikrishna17...@gmail.com: -- nosy: +saikrishna17394 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21991 ___ ___ Python

[issue34420] Complete your registration to Python tracker -- keysnSwaZe6PtikiEZf4bdIXIiuwFyFZFxp

2018-08-17 Thread sai arjun
New submission from sai arjun : I have received the email. Sent from Mail for Windows 10 From: Python tracker Sent: 16 August 2018 17:08 To: venkkar...@yahoo.com Subject: Complete your registration to Python tracker -- keysnSwaZe6PtikiEZf4bdIXIiuwFyFZFxp To complete your registration

[issue22124] Rotating items of list to left

2014-08-02 Thread Sai Krishna G
New submission from Sai Krishna G: Hi, I am trying to rotate list of 3 to left for this I am trying to define this function def rotate_left3(nums) #argument nums is list for example rotate_left3([1, 2, 3]) I am expecting value [2,3,1] in return. I have written the following code a = nums

[issue32074] Might be a wrong implementation

2017-11-19 Thread Sai Bhargava Ramu
New submission from Sai Bhargava Ramu <saiedi...@gmail.com>: https://docs.python.org/2/library/itertools.html#itertools.combinations #The behaviour of combinations function in documentation is different and I think identation is missing with `else` #I didn't get the logic right is poi

[issue42438] Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding

2020-11-22 Thread Vuyyuru Sai Nithish
New submission from Vuyyuru Sai Nithish : Im using django on an virtual env, when im trying to use pandas it was giving me and error message(IDE: VScode) i.e, module error: pandas was not found. I reinstalled python from 3.8.2 to 3.9 and now in my virtual environment it was giving an error

[issue42438] Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding

2020-11-22 Thread Vuyyuru Sai Nithish
Change by Vuyyuru Sai Nithish : -- nosy: nithish priority: normal severity: normal status: open title: Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding type: crash versions: Python 3.9 ___ Python

[issue43943] test_ssl fails in the macos CI

2021-05-03 Thread PAKKURTHI MOHAN SAI KRISHNA
Change by PAKKURTHI MOHAN SAI KRISHNA : -- components: +Installation -macOS nosy: -ned.deily, ronaldoussoren ___ Python tracker <https://bugs.python.org/issue43

[issue43710] Access violations in C extension modules on Python 3.9.3

2021-05-03 Thread PAKKURTHI MOHAN SAI KRISHNA
Change by PAKKURTHI MOHAN SAI KRISHNA : -- assignee: -> terry.reedy components: +IDLE -Extension Modules, Windows nosy: +terry.reedy ___ Python tracker <https://bugs.python.org/issu

[issue43943] test_ssl fails in the macos CI

2021-05-03 Thread PAKKURTHI MOHAN SAI KRISHNA
Change by PAKKURTHI MOHAN SAI KRISHNA : -- components: +macOS nosy: +ned.deily, ronaldoussoren status: pending -> open ___ Python tracker <https://bugs.python.org/issu

[issue44020] test_ssl fails in the macos CI

2021-05-03 Thread PAKKURTHI MOHAN SAI KRISHNA
Change by PAKKURTHI MOHAN SAI KRISHNA : -- components: macOS nosy: christian.heimes, mohansai, ned.deily, pablogsal, ronaldoussoren priority: normal severity: normal status: open title: test_ssl fails in the macos CI type: behavior versions: Python 3.10

[issue45689] Add the ability to give custom names to threads created by ThreadPoolExecutor

2021-11-09 Thread Tangellapalli Sai Hanuma Rahul
Tangellapalli Sai Hanuma Rahul added the comment: Yes, it's true, it's so naive method, Contextvars! may be inside the Future Object? -- resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Python tracke

[issue45689] Custom Name for ThreadPoolExecutor

2021-11-02 Thread Tangellapalli Sai Hanuma Rahul
New submission from Tangellapalli Sai Hanuma Rahul : Feature Request: Where we can use custom Names for separate threads submitted in ThreadPoolExecutor. It achieves by sending the name string to _work_queue of ThreadPoolExecutor and then in _worker function modifies the name

[issue45689] Custom Name for ThreadPoolExecutor

2021-11-02 Thread Tangellapalli Sai Hanuma Rahul
Change by Tangellapalli Sai Hanuma Rahul : -- hgrepos: -410 ___ Python tracker <https://bugs.python.org/issue45689> ___ ___ Python-bugs-list mailing list Unsub

[issue45689] Custom Name for ThreadPoolExecutor

2021-11-02 Thread Tangellapalli Sai Hanuma Rahul
Change by Tangellapalli Sai Hanuma Rahul : -- hgrepos: +410 keywords: +patch pull_requests: +27619 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29359 ___ Python tracker <https://bugs.python.org/issu

[issue45689] Add the ability to give custom names to threads created by ThreadPoolExecutor

2021-11-08 Thread Tangellapalli Sai Hanuma Rahul
Tangellapalli Sai Hanuma Rahul added the comment: There is a new function submit_with_name in _base.Executor that can accept name parameters before args and kwargs, submit can continue to be used as before. submit internally calls submit_with_name with name as None. Calling submit_with_name

[issue45689] Add the ability to give custom names to threads created by ThreadPoolExecutor

2021-11-09 Thread Tangellapalli Sai Hanuma Rahul
Tangellapalli Sai Hanuma Rahul added the comment: In summary; == Current Problem: -- ThreadPoolExecutor handles all threads-related activities so the user needs to just submit tasks and set max_workers and other Executor settings if necessary. If ThreadPoolExecutor

[issue45689] Custom Name for ThreadPoolExecutor

2021-11-03 Thread Tangellapalli Sai Hanuma Rahul
Change by Tangellapalli Sai Hanuma Rahul : -- versions: -Python 3.10, Python 3.11 ___ Python tracker <https://bugs.python.org/issue45689> ___ ___ Python-bug

[issue45689] Custom Name for ThreadPoolExecutor

2021-11-07 Thread Tangellapalli Sai Hanuma Rahul
Tangellapalli Sai Hanuma Rahul added the comment: ThreadPool handles tasks concurrently through Threads so users need not worry about the creation/deletion of Threads, it uses reuses threads whenever possible and it can handle any tasks. However, it should be possible for users to at least

[issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error

2022-04-04 Thread Kaushal Sai v
Change by Kaushal Sai v : -- nosy: vkaushalsai priority: normal severity: normal status: open title: if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error versions: Python 3.11 ___ Python tracker <ht

[issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error

2022-04-05 Thread Kaushal Sai v
Change by Kaushal Sai v : -- status: open -> pending ___ Python tracker <https://bugs.python.org/issue47226> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error called unexpected indent

2022-04-05 Thread Kaushal Sai v
Kaushal Sai v added the comment: the error mesessage is tha unexpected incident -- components: +Windows -IDLE nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue47

[issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error called unexpected indent

2022-04-05 Thread Kaushal Sai v
Change by Kaushal Sai v : -- components: +IDLE ___ Python tracker <https://bugs.python.org/issue47226> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error

2022-04-05 Thread Kaushal Sai v
Change by Kaushal Sai v : -- assignee: -> terry.reedy components: +IDLE nosy: +terry.reedy status: pending -> open versions: +Python 3.10 -Python 3.11 ___ Python tracker <https://bugs.python.org/i

[issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error called unexpected indent

2022-04-05 Thread Kaushal Sai v
Change by Kaushal Sai v : -- title: if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error -> if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error called unexpected ind

[issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error called unexpected indent

2022-04-05 Thread Kaushal Sai v
Change by Kaushal Sai v : -- status: open -> pending ___ Python tracker <https://bugs.python.org/issue47226> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue47226] if we write a line of code like i wrote keys = pygame.key.get_pressed() is showing error called unexpected indent

2022-04-05 Thread Kaushal Sai v
Change by Kaushal Sai v : -- status: pending -> open Added file: https://bugs.python.org/file50719/python problem.PNG ___ Python tracker <https://bugs.python.org/issu