[issue42336] Make PCbuild/build.bat build x64 by default

2020-11-13 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +22171 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23275 ___ Python tracker ___

[issue42336] Make PCbuild/build.bat build x64 by default

2020-11-13 Thread Steve Dower
Steve Dower added the comment: I hope you'll find that PR suitable ambitious :) It would really be nice to have proper Powershell scripts for these, but that would be a more significant rewrite (and probably require changing argument names...). I'm not *that* ambitious. --

[issue42290] Unicode inconsistent display after concencated

2020-11-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: Xia, when saying 'unexpected', one usually needs to also say what was expected. When discussing mixed direction chars, we need to be especially careful in describing what we see with different terminals, different browsers, and different OSes. Steven: On Wi

[issue42290] Display of Unicode strings with bidi characters

2020-11-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- title: Unicode inconsistent display after concencated -> Display of Unicode strings with bidi characters ___ Python tracker ___ _

[issue37205] time.perf_counter() is not system-wide on Windows, in disagreement with documentation

2020-11-13 Thread Eryk Sun
Eryk Sun added the comment: > QPC typically has a frequency of 1e7, Never mind. Apparently with some combinations of chipset, processor, and Windows version, the QPC frequency runs far beyond the 1-10 MHz range. I thought Windows divided by 1024 instead of letting it run in the GHz range, b

[issue42293] Installation of pyinstaller in Windows fails with utf8 error

2020-11-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: A 'crash' is when the program hangs or stops unexpectedly *without* an Exception and message. Lib/site-packages/sitecustomize.py is an optional added module. https://docs.python.org/3/library/site.html#index-5 Apparently, attempted installation of pyinstaller

[issue17454] ld_so_aix not used when linking c++ (scipy)

2020-11-13 Thread Kevin
Kevin added the comment: This was fixed by https://github.com/python/cpython/pull/10437 -- nosy: +kadler ___ Python tracker ___ ___

[issue42296] Infinite loop uninterruptable on Windows in 3.10

2020-11-13 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks for the quick fix. It works! -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue24501] configure does not find (n)curses in /usr/local/libs

2020-11-13 Thread Kevin
Kevin added the comment: There error indicates it can't find ncurses.h configure:14223: xlc_r -c -qmaxmem=-1 -DSYSV -D_AIX -D_AIX71 -D_ALL_SOURCE -DFUNCPROTO=15 -O -I/usr/local/include -I/usr/include/ncursesw conftest.c >&5 "conftest.c", line 311.10: 1506-296 (S) #include file not found. A

[issue24046] Incomplete build on AIX

2020-11-13 Thread Kevin
Kevin added the comment: Looks like RAND_egd was made optional in https://bugs.python.org/issue21356 Can this issue be closed? -- nosy: +kadler ___ Python tracker ___ ___

[issue24886] open fails randomly on AIX

2020-11-13 Thread Kevin
Kevin added the comment: Given that the AIX bug has long been fixed and Python 2.7 is EOL we can probably close this bug. -- nosy: +kadler ___ Python tracker ___

[issue42309] BUILD: AIX-64-bit segmentation fault

2020-11-13 Thread Kevin
Kevin added the comment: I have not encountered this problem when building Python 3.10 on AIX and PASE with GCC 6.3. -- nosy: +kadler ___ Python tracker ___ _

[issue24886] open fails randomly on AIX

2020-11-13 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-

[issue42302] [Turtle] Add clockwise and anticlockwise method as alias to right and left

2020-11-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: 'Clockwise' and 'counterclockwise'* refer to an object either continuously spinning on an axis or possibly moving in a circle. An object in linear motion turns right or left. This is especially true for an organism or object with left or right sides#, and

[issue42318] [tkinter] surrogate pairs in Tcl/Tk string when pasting an emoji in a text widget

2020-11-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: Yash, this is specifically a macOS issue. Printing astral chars in tkinter/IDLE on Windows and Linux has 'worked' (details not important) for over a year. -- nosy: +terry.reedy ___ Python tracker

[issue42328] ttk style.map function incorrectly handles the default state for element options.

2020-11-13 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +serhiy.storchaka, terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue27578] inspect.findsource raises exception with empty __init__.py

2020-11-13 Thread kernc
kernc added the comment: The proposed patch doesn't break any interfaces. `inspect.getsource/.getsourcelines()` still raise `OSError` if the source is unretrievable. `linecache.getlines()` is undocumented, but the change retains perfect compatibility with *docstrings* of both `linecache.getl

[issue42351] Setup.py: UnicodeDecodeError in grep_headers_for

2020-11-13 Thread Chih-Hsuan Yen
Chih-Hsuan Yen added the comment: I can also confirm the issue on our Arch Linux server [1]. The problematic file is also /usr/include/OMX_Other.h. Looks like it is a regression from https://github.com/python/cpython/pull/22855 (https://bugs.python.org/issue41100). Ronald Oussoren, mind to h

[issue42325] UnicodeDecodeError executing ./setup.py during build

2020-11-13 Thread Chih-Hsuan Yen
Chih-Hsuan Yen added the comment: I got a similar issue on Arch Linux - see issue42351. -- nosy: +yan12125 ___ Python tracker ___ _

[issue37205] time.perf_counter() is not system-wide on Windows, in disagreement with documentation

2020-11-13 Thread Daniel Hrisca
Daniel Hrisca added the comment: Under the hood perf_counter_ns already uses the two winapi calls (see https://github.com/python/cpython/blob/41761933c1c30bb6003b65eef1ba23a83db4eae4/Python/pytime.c#L970) just that it also sets up a static variable as a time origin which makes it process-wid

[issue42338] Enable Debug Build For Python Native Modules in Windows, with Visual Studio Toolchain

2020-11-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: This tracker is for developing patches to the cpython repository. Questions are better asked on the python-list and occasionally the pydev mailing lists. I am leaving this open in case there is a doc change request lurking somewhere. -- components:

[issue42348] Language Reference: Set items

2020-11-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: Raymond's last point is that set objects should be immutably hashable. I would say 'must be' in the sense that mutably hashable objects break sets in various ways, starting with uniqueness. If we were to make a change, I think the replacement should be 'im

<    1   2