[issue42940] Incorrect behavior of inspect.signature(f).bind

2021-01-16 Thread Slava Kostrov
New submission from Slava Kostrov : >>> def foo(a, /, b=1, **kwargs): pass ... >>> foo(a=1) Traceback (most recent call last): File "", line 1, in TypeError: foo() missing 1 required positional argument: 'a' >>> inspect.signature(foo).bind(a=1) Trac

[issue32068] textpad from curses package isn't handling backspace key

2017-11-18 Thread Slava Bacherikov
New submission from Slava Bacherikov <sl...@bacher09.org>: textpad isn't handling backspace key on my system and seems on others too. When I press backspace key, terminal sends `ascii.DEL` (127) and it isn't handled by textpad. I've attached patch that fixes this, should I also cre

[issue26473] Python 3.5 not run

2016-03-02 Thread Slava
New submission from Slava: Python 3.5 not run on Windows Server 2003 (PE mode). Python 3.5 installer not work too. -- components: Windows files: Clipboard01.jpg messages: 261134 nosy: newillusion, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status

[issue9072] Unloading modules - memleaks?

2010-06-24 Thread Slava
New submission from Slava bomb...@gmail.com: I don't know whether this is a bug, but my exhaustive search led me to Python can't really unload modules from every direction, which I find hard to believe, I don't know where else to go with this. The problem: import gc, sys print len

[issue9072] Unloading modules - memleaks?

2010-06-24 Thread Slava
Slava bomb...@gmail.com added the comment: Thank you for taking time to answer my question about unloading modules. I really appreciate it! Slava On Fri, Jun 25, 2010 at 2:43 AM, Martin v. Löwis rep...@bugs.python.orgwrote: Martin v. Löwis mar...@v.loewis.de added the comment