[issue29111] Strange signature for memoryview constructor

2016-12-30 Thread Stefan Krah
Changes by Stefan Krah : -- assignee: -> skrah resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker

[issue29111] Strange signature for memoryview constructor

2016-12-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1e1e24629218 by Stefan Krah in branch '3.5': Issue #29111: Fix memoryview signature. https://hg.python.org/cpython/rev/1e1e24629218 -- nosy: +python-dev ___ Python tracker

[issue29111] Strange signature for memoryview constructor

2016-12-30 Thread Stefan Krah
Stefan Krah added the comment: The patch seems to fix it. $module was a thing at some point, I don't know whether the semantics changed or if it was wrong in the first place. -- keywords: +patch Added file: http://bugs.python.org/file46089/issue29111.diff

[issue29111] Strange signature for memoryview constructor

2016-12-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Interpreter Core -Library (Lib) nosy: +larry, skrah, yselivanov type: -> behavior versions: +Python 3.6, Python 3.7 ___ Python tracker

[issue29111] Strange signature for memoryview constructor

2016-12-29 Thread Antony Lee
New submission from Antony Lee: The return value of `inspect.signature(memoryview)` is rather strange: Python 3.5.2 (default, Nov 7 2016, 11:31:36) [GCC 6.2.1 20160830] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import inspect;