[issue29176] /tmp does not exist on Android and is used by curses.window.putwin()

2017-02-22 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: > Is tmpfile() available on Android? Yes. Just tried it with Android NDK r13 with clang and API 21 (Android 5.0). Here's the source code test.c: #include int main() { FILE *fp = NULL; char c = '\0'; fp = tmpfile(); fprintf(fp, "123\n");

[issue29532] functools.partial is not compatible between 2.7 and 3.5

2017-02-22 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue29532] functools.partial is not compatible between 2.7 and 3.5

2017-02-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 5010a77a4da76d8d3fd861a63a7f1ce8f0e9c520 by GitHub in branch '3.5': [3.5] bpo-29532: Altering a kwarg dictionary passed to functools.partial() no longer affects a partial object after creation. (#222)

[issue26789] Please do not log during shutdown

2017-02-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: There are no guaranties. But in recent Python versions the order of finalising is more predicable. It is hard to reproduce a case when some builtins or sys member is not available (with some exceptions). The order of clearing (see PyImport_Cleanup() in

[issue26213] Document BUILD_*_UNPACK opcodes

2017-02-22 Thread Ivan Levkivskyi
Changes by Ivan Levkivskyi : -- nosy: +levkivskyi ___ Python tracker ___ ___

[issue29618] Making a Tuple or Dict with Callable[ ..., xxx ] gives error

2017-02-22 Thread Pauli Salmenrinne
Pauli Salmenrinne added the comment: I tried to reproduce the issue with 3.5 branch from the current github, and the issue seems to be fixed. Closing this as fixed, sorry for the trouble. -- resolution: -> fixed stage: -> resolved status: open -> closed

[issue10938] Provide links to system specific strftime/ptime docs

2017-02-22 Thread Xiang Zhang
Xiang Zhang added the comment: I agree with Berker and Jim here. I think the current doc is clear enough so mark this as rejected. :-( -- nosy: +xiang.zhang resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Python

[issue29565] Still broken ctypes calling convention on MSVC / 64-bit Windows (large structs)

2017-02-22 Thread Vinay Sajip
Changes by Vinay Sajip : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue29618] Making a Tuple or Dict with Callable[ ..., xxx ] gives error

2017-02-22 Thread Pauli Sundberg
New submission from Pauli Sundberg: Hi all. I tried asking this on IRC channel, but ended up with no answear. Simple example: from typing import Dict, Callable CmdFun= Callable[ ... , int ] CmdFull = Dict[ str, CmdFun ] Gives error: pauli@HPauli-U1604 ~ % python3 /tmp/silly.py

<    1   2