Re: "py.ini" question

2021-04-26 Thread Gisle Vanem
Ralf M. wrote: I think the problem / misunderstanding is that Gisle put in py.ini only  [defaults]  python=3.6 and expected this to make py -3 start 3.6. However py -3 looks for a key named 'python3' and, not finding it, uses default behaviour (ignoring the 'python' key), i.e. starts the

[issue43940] int casting to float results to a different value in memory

2021-04-26 Thread Mark Dickinson
Change by Mark Dickinson : -- resolution: -> not a bug status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing

[issue43908] array.array should remain immutable

2021-04-26 Thread Shreyan Avigyan
Change by Shreyan Avigyan : -- nosy: +shreyanavigyan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38820] Make Python compatible with OpenSSL 3.0.0

2021-04-26 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +24323 pull_request: https://github.com/python/cpython/pull/25624 ___ Python tracker ___

[issue43940] int casting to float results to a different value in memory

2021-04-26 Thread Mark Dickinson
Mark Dickinson added the comment: There's an implicit float-to-double conversion here (`fp.contents.value` is represented as a Python float, which is backed by a C double). What you're seeing is that converting the single-precision signaling NaN to double precision loses the signaling bit,

Re: Are there Python modules that allow a program to write to the screen?

2021-04-26 Thread Chris Angelico
On Mon, Apr 26, 2021 at 4:40 PM Stephen Tucker wrote: > > Hi, > > I have old software written in GWBASIC that I use to plot diagrams on the > screen. > > In Windows 10, I have to resort to using the DOSBox emulator to run it. > "The screen" isn't really a viable target in a modern world, so it

[issue12403] Mention sys.displayhook in code module docs and the compile builtin docs

2021-04-26 Thread Sergey B Kirpichev
Change by Sergey B Kirpichev : -- nosy: +Sergey.Kirpichev ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26092] doctest should allow custom sys.displayhook

2021-04-26 Thread Sergey B Kirpichev
Sergey B Kirpichev added the comment: Tim, lets decide on this simple issue. To me, https://bugs.python.org/issue8048 was obviously a bad thing. While it "fixes" one application, which customize sys.displayhook in a strange way - it break testing almost everyone, which do sys.displayhook

[issue43612] zlib.compress should have a wbits argument

2021-04-26 Thread Ruben Vorderman
Ruben Vorderman added the comment: A patch was created, but has not been reviewed yet. -- ___ Python tracker ___ ___

[issue43612] zlib.compress should have a wbits argument

2021-04-26 Thread Ruben Vorderman
Change by Ruben Vorderman : -- versions: +Python 3.11 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

Are there Python modules that allow a program to write to the screen?

2021-04-26 Thread Stephen Tucker
Hi, I have old software written in GWBASIC that I use to plot diagrams on the screen. In Windows 10, I have to resort to using the DOSBox emulator to run it. I would dearly like to re-write it in Python - ideally Python 2.7. What, if anything, is available? Stephen Tucker. --

[issue43901] Lazy-create an empty annotations dict in all unannotated user classes and modules

2021-04-26 Thread ANDRZEJ J.
Change by ANDRZEJ J. : -- components: +FreeBSD -Interpreter Core nosy: +kokik, koobs ___ Python tracker ___ ___

<    1   2   3