[issue41182] DefaultSelector fails to detect selector on VMware ESXi

2020-07-14 Thread Abhijeet Kasurde
Abhijeet Kasurde added the comment: Any news? -- ___ Python tracker <https://bugs.python.org/issue41182> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41182] DefaultSelector fails to detect selector on VMware ESXi

2020-07-01 Thread Abhijeet Kasurde
Change by Abhijeet Kasurde : -- keywords: +patch pull_requests: +20403 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21257 ___ Python tracker <https://bugs.python.org/issu

[issue41182] DefaultSelector fails to detect selector on VMware ESXi

2020-07-01 Thread Abhijeet Kasurde
New submission from Abhijeet Kasurde : When DefaultSelector is used on VMware ESXi, it fails with >>> import selectors >>> selector = selectors.DefaultSelector() Traceback (most recent call last): File "", line 1, in File "/build/mts/release/bora-48873

[issue39133] threading lib. working improperly on idle window

2019-12-25 Thread Abhijeet
New submission from Abhijeet : Threading library's Thread and start functions not showing predicted result on idle. Especially, newline is not invoked between two threads while sometimes gets invoked in result. Often, running of code stops after thread ends i.e no further execution. Ve

[issue16365] IDLE for Windows 8

2012-10-30 Thread Abhijeet Joshi
Abhijeet Joshi added the comment: will leave it open so that some win8 developer will check it out. -- ___ Python tracker <http://bugs.python.org/issue16

[issue16365] IDLE for Windows 8

2012-10-30 Thread Abhijeet Joshi
Abhijeet Joshi added the comment: Thanks for your reply. I have tried re-installing it 3-4 times and it started working now. -- ___ Python tracker <http://bugs.python.org/issue16

[issue16365] IDLE for Windows 8

2012-10-30 Thread Abhijeet Joshi
New submission from Abhijeet Joshi: Hello, I have installed Idle for python 3.3 on windows 8 and trying to open the GUI but unable to open anything. The screen doesn't show up on monitor. Please help me here. Thanks Abhijeet -- components: IDLE messages: 174217 nosy: jabh

[issue11773] Unicode compared using "is" results in abnormal behavior

2011-04-05 Thread Abhijeet Rastogi
New submission from Abhijeet Rastogi : >>> a = u'0' >>> a is u'0' False >>> a == u'0' True >>> -- components: Unicode messages: 133038 nosy: shadyabhi priority: normal severity: normal status: open title: Unicode compar