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
New submission from Slava Bacherikov :
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 create PR for th
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
Slava 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 wrote:
>
> Martin v. Löwis added the comment:
>
> This is not a bug. You didn't *nearly* re
New submission from Slava :
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