[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-25 Thread Ned Deily
Ned Deily added the comment: Raynmond: > Something in the release build process is triggering this behavior (perhaps > PGO). The difference is explained in msg33731. When 3.7+ is built on macoS 10.11.x+ and earlier, clock_gettime is not available and the PEP 564 refactored code falls back

[issue37945] test_locale failing

2019-08-25 Thread Eryk Sun
Eryk Sun added the comment: local.normalize is generally wrong in Windows. It's meant for POSIX systems. Currently "tr_TR" is parsed as follows: >>> locale._parse_localename('tr_TR') ('tr_TR', 'ISO8859-9') The encoding "ISO8859-9" is meaningless to Windows. Also, the old CRT only

[issue13653] reorder set.intersection parameters for better performance

2019-08-25 Thread Raymond Hettinger
Raymond Hettinger added the comment: The anti-correlation algorithm seems like a plausible heuristic but it can't really know more than the user does about the semantic content of the sets. Also as Terry pointed out, this will have user visible effects. This likely should be published as a

[issue37824] IDLE: Handle Shell input warnings properly.

2019-08-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: I pulled the part of PR 15311 that works, stop turning Shell SyntaxWarnings into SyntaxErrors, into PR-15500, to get it into b4. I will update the former after merging the latter. -- stage: patch review -> ___

[issue37824] IDLE: Handle Shell input warnings properly.

2019-08-25 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: +15189 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15500 ___ Python tracker ___

[issue37934] Docs: Clarify NotImplemented use cases

2019-08-25 Thread Raymond Hettinger
Raymond Hettinger added the comment: It is not the purpose of the docs to list use cases. Mostly we say what something does or how it is defined. As Vedran says, how people use it is their own business. Also, please be careful expanded the docs. They quickly become a promise. Per

[issue37934] Docs: Clarify NotImplemented use cases

2019-08-25 Thread Vedran Čačić
Vedran Čačić added the comment: Well, it is the _intended_ use of NotImplemented. Of course you can use it whenever you want, just as you can use Ellipsis whenever you want. But I don't think docs should encourage that. -- nosy: +veky ___ Python

[issue37946] Add the Bessel functions of the first and second kind to the math module

2019-08-25 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: > If they are provided by the C lib, I would love to see them exposed by Python. Check PR 15497 for an initial version of exposing the libm functions if they are available. > I don't know if they should be treated as optional/platform dependent, or

[issue37946] Add the Bessel functions of the first and second kind to the math module

2019-08-25 Thread Steven D'Aprano
Steven D'Aprano added the comment: If they are provided by the C lib, I would love to see them exposed by Python. If they aren't, I don't know if they should be treated as optional/platform dependent, or if we should provide an independent implementation. I guess the easy way is to just

[issue37947] symtable_handle_namedexpr does not adjust correctly the recursion level

2019-08-25 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +15188 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15499 ___ Python tracker

[issue37947] symtable_handle_namedexpr does not adjust correctly the recursion level

2019-08-25 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : The symtable_handle_namedexpr function does not adjust correctly the recursion level when exiting (also, is actually not returning anything in a function defined as non-void but the return value is not used so is not technically undefined

[issue37946] Add the Bessel functions of the first and second kind to the math module

2019-08-25 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +15187 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15497 ___ Python tracker

[issue37946] Add the Bessel functions of the first and second kind to the math module

2019-08-25 Thread Pablo Galindo Salgado
New submission from Pablo Galindo Salgado : After repeatedly having to add 3rd party libraries only for the these functions or having to implement them myself quick and dirty based on numerical integration, I suggest add the Bessel functions of the first and second kind to the math module.

[issue32847] Add DirectoryNotEmptyError subclass of OSError

2019-08-25 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch pull_requests: +15186 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15496 ___ Python tracker

[issue37884] Optimize Fraction() and statistics.mean()

2019-08-25 Thread Steven D'Aprano
Steven D'Aprano added the comment: On Sat, Aug 24, 2019 at 10:09:40AM +, Serhiy Storchaka wrote: > Could you please explain what is wrong in adding a helper function > which will help to convert different types of numbers to integer ratio > correctly? > > Currently you need to write a

[issue20806] os.times document points to wrong section of non-Linux manual

2019-08-25 Thread Eryk Sun
Eryk Sun added the comment: The function's doc string also needs to be updated to use the correct field names: "user", "system", "children_user", "children_system", and "elapsed". > And we can also add a link to MSDN. os.times calls GetProcessTimes [1]. The user and kernel process times are

[issue23933] Struct module should accept arrays

2019-08-25 Thread Kyle Stanley
Change by Kyle Stanley : -- nosy: +mark.dickinson, meador.inge ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue23933] Struct module should accept arrays

2019-08-25 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- title: Struct module should acept arrays -> Struct module should accept arrays ___ Python tracker ___

[issue37827] IDLE: Have the shell mimic terminal handling of \r and \b control characters in outputs

2019-08-25 Thread Guido van Rossum
Guido van Rossum added the comment: I agree -- this was added to Emacs a long time ago and it makes a big difference for people (like myself) who do a lot of work in Emacs shell windows. I imagine it's the same for IDLE. -- nosy: +gvanrossum ___

[issue34769] _asyncgen_finalizer_hook running in wrong thread

2019-08-25 Thread Andrew Svetlov
Change by Andrew Svetlov : -- pull_requests: +15183, 15184 pull_request: https://github.com/python/cpython/pull/15492 ___ Python tracker ___

[issue34769] _asyncgen_finalizer_hook running in wrong thread

2019-08-25 Thread Andrew Svetlov
Change by Andrew Svetlov : -- pull_requests: +15183, 15184, 15185 pull_request: https://github.com/python/cpython/pull/15492 ___ Python tracker ___

[issue34769] _asyncgen_finalizer_hook running in wrong thread

2019-08-25 Thread Andrew Svetlov
Change by Andrew Svetlov : -- pull_requests: +15183 pull_request: https://github.com/python/cpython/pull/15492 ___ Python tracker ___

[issue29553] Argparser does not display closing parentheses in nested mutex groups

2019-08-25 Thread Berker Peksag
Berker Peksag added the comment: New changeset 31ea447ffe591736af1d7a3178c0f7ca3eb50d70 by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-29553: Fix ArgumentParser.format_usage() for mutually exclusive groups (GH-14976)

[issue34679] asyncio.add_signal_handler call fails if not on main thread

2019-08-25 Thread Kyle Stanley
Kyle Stanley added the comment: > Kyle, thanks for the fix. > I have basically the same change in my PR but with test and news note. No problem, that works for me. I was mostly just trying to help with resolving some of the release blockers for 3.8b4. --

[issue37806] Infinite recursion with typing.get_type_hints

2019-08-25 Thread Guido van Rossum
Change by Guido van Rossum : -- nosy: -gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37945] test_locale failing

2019-08-25 Thread Tim Golden
Tim Golden added the comment: Just to save you looking, the code in https://github.com/python/cpython/blob/master/Modules/_localemodule.c#L107 converts the 2-tuple to lang.encoding form so the C module is seeing "en_GB.cp1252" -- ___ Python

[issue37945] test_locale failing

2019-08-25 Thread Tim Golden
Tim Golden added the comment: Ok; so basically this doesn't work: import locale locale.setlocale(locale.LC_CTYPE, locale.getdefaultlocale()) It gives "locale.Error: unsupported locale setting" which comes from https://github.com/python/cpython/blob/master/Modules/_localemodule.c#L107

[issue29553] Argparser does not display closing parentheses in nested mutex groups

2019-08-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +15182 pull_request: https://github.com/python/cpython/pull/15494 ___ Python tracker ___

[issue29553] Argparser does not display closing parentheses in nested mutex groups

2019-08-25 Thread Berker Peksag
Berker Peksag added the comment: New changeset da27d9b9dc44913ffee8f28d9638985eaaa03755 by Berker Peksag (Flavian Hautbois) in branch 'master': bpo-29553: Fix ArgumentParser.format_usage() for mutually exclusive groups (GH-14976)

[issue37806] Infinite recursion with typing.get_type_hints

2019-08-25 Thread hongweipeng
Change by hongweipeng : -- keywords: +patch pull_requests: +15181 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15493 ___ Python tracker ___

[issue37835] typing.get_type_hints wrong namespace for forward-declaration of inner class

2019-08-25 Thread Netzeband
Netzeband added the comment: I think I found a better workaround (by accident). I was debugging another issue with get_type_hints for the case that this function is used inside the __new__ method of a metaclass and with methods of the class to define. Here the same issue happens: Forward

[issue37945] test_locale failing

2019-08-25 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- components: +Windows nosy: +eryksun, paul.moore, steve.dower, xtreak, zach.ware ___ Python tracker ___

[issue34014] loop.run_in_executor should propagate current contextvars

2019-08-25 Thread Viktor Kovtun
Viktor Kovtun added the comment: Hey, as I see there is no new API yet. Can we take a look again on 3) ? I'll be happy to update PR 9688 -- ___ Python tracker ___

[issue37945] test_locale failing

2019-08-25 Thread Tim Golden
New submission from Tim Golden : On a Win10 machine I'm consistently seeing test_locale (and test__locale) fail. I'll attach pythoninfo. == ERROR: test_getsetlocale_issue1813 (test.test_locale.TestMiscellaneous)

[issue34769] _asyncgen_finalizer_hook running in wrong thread

2019-08-25 Thread Andrew Svetlov
Change by Andrew Svetlov : -- pull_requests: -15179 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17083] can't specify newline string for readline for binary files

2019-08-25 Thread Géry
Change by Géry : -- nosy: +maggyero ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1152248] Add support for reading records with arbitrary separators to the standard IO stack

2019-08-25 Thread Géry
Change by Géry : -- nosy: +maggyero ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34679] asyncio.add_signal_handler call fails if not on main thread

2019-08-25 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +15180 pull_request: https://github.com/python/cpython/pull/15492 ___ Python tracker ___

[issue37944] Adjacent escape character in json.load()

2019-08-25 Thread Origami Tobiichi
Origami Tobiichi added the comment: I'm sorry that I remove you from list, actually it's my first time to commit an issue on there and I'm afraid I used it wrong. -- nosy: +xtreak ___ Python tracker

[issue34679] asyncio.add_signal_handler call fails if not on main thread

2019-08-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Kyle, thanks for the fix. I have basically the same change in my PR but with test and news note. -- ___ Python tracker ___

[issue34679] asyncio.add_signal_handler call fails if not on main thread

2019-08-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: The issue is related to Python 3.8 and master only. 3.6-3.7 are not affected -- versions: +Python 3.9 -Python 3.6, Python 3.7 ___ Python tracker

[issue34769] _asyncgen_finalizer_hook running in wrong thread

2019-08-25 Thread Andrew Svetlov
Change by Andrew Svetlov : -- pull_requests: +15179 pull_request: https://github.com/python/cpython/pull/15492 ___ Python tracker ___

[issue24479] Support LMMS project files in mimetypes.guess_type

2019-08-25 Thread Dong-hee Na
Dong-hee Na added the comment: @vstiner I'd like to work on this issue. My plan is adding mime-types as 'mmp' to 'application/x-lmms-project' and 'mmpz' to 'application/x-lmms-project' What do you think? -- nosy: +corona10 ___ Python tracker

[issue37757] TargetScopeError not raised for comprehension scope conflict

2019-08-25 Thread Nick Coghlan
Nick Coghlan added the comment: Merged for 3.8b4 after Emily's review. Thanks to all involved in the PEP update and change discussion! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue37757] TargetScopeError not raised for comprehension scope conflict

2019-08-25 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 6ca030765db49525f16b8fabff4153238148b58d by Nick Coghlan in branch '3.8': [3.8] bpo-37757: Disallow PEP 572 cases that expose implementation details (GH-15491) https://github.com/python/cpython/commit/6ca030765db49525f16b8fabff4153238148b58d

[issue37938] refactor PyLong_As*() functions

2019-08-25 Thread Mark Dickinson
Change by Mark Dickinson : -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37757] TargetScopeError not raised for comprehension scope conflict

2019-08-25 Thread Nick Coghlan
Change by Nick Coghlan : -- pull_requests: +15178 pull_request: https://github.com/python/cpython/pull/15491 ___ Python tracker ___

[issue37837] add internal _PyLong_FromUnsignedChar() function

2019-08-25 Thread Sergey Fedoseev
Sergey Fedoseev added the comment: These last results are invalid :-) I thought that I was checking _PyLong_FromUnsignedChar() on top of GH-15192, but that wasn't true. So the correct results for LTO build are: $ python -m perf timeit -s "from collections import deque; consume =

[issue37944] Adjacent escape character in json.load()

2019-08-25 Thread Origami Tobiichi
Origami Tobiichi added the comment: I hope I have given enough infomations. And I'm not good at English, please forgive some of my spell wrong, thanks. -- ___ Python tracker

[issue37944] Adjacent escape character in json.load()

2019-08-25 Thread Origami Tobiichi
Origami Tobiichi added the comment: I tried something like this: ```python print(r'{"foo": "\\\""}') print('{"foo": "\\\""}') print(json.loads(r'{"foo":"\\\""}')) ``` On my machine it output like this: ``` {"foo": "\\\""} {"foo": "\""} {'foo': '\\"'} ``` But in most of online json parser,

[issue37944] About json.load(s

2019-08-25 Thread Karthikeyan Singaravelan
New submission from Karthikeyan Singaravelan : Can you please add a description to explain the report? -- nosy: +xtreak ___ Python tracker ___

[issue37757] TargetScopeError not raised for comprehension scope conflict

2019-08-25 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 5dbe0f59b7a4f39c7c606b48056bc29e406ebf78 by Nick Coghlan in branch 'master': bpo-37757: Disallow PEP 572 cases that expose implementation details (GH-15131) https://github.com/python/cpython/commit/5dbe0f59b7a4f39c7c606b48056bc29e406ebf78

[issue37944] About json.load(s

2019-08-25 Thread Origami Tobiichi
Change by Origami Tobiichi : -- components: Extension Modules nosy: Origami Tobiichi priority: normal severity: normal status: open title: About json.load(s type: behavior versions: Python 3.7 ___ Python tracker

[issue37940] Add xml.tool to pretty print XML like json.tool

2019-08-25 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: There are several modules that expose some of their uses through command line like json.tool, zipfile, tarfile, gzip, webbrowser etc. The initial proposal was to expose the newly added indent function over the command line to provide the same

[issue30162] Add _PyTuple_Empty and make PyTuple_New(0) never failing

2019-08-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Closed because several commenters found things to not like about it. -- resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue34880] About the "assert" bytecode

2019-08-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Zackery for your contribution. > where ".AssertionError" is a name-mangled free variable and is assigned once > the module is executed. But this still allows to overriding builtin AssertionError before importing a module. And this solution

[issue37914] class timedelta, support the method hours and minutes in field accessors

2019-08-25 Thread Elinaldo Monteiro
Elinaldo Monteiro added the comment: I am closed my issue. -- resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue36917] ast.NodeVisitor no longer calls visit_Str

2019-08-25 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +15177 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15490 ___ Python tracker

[issue20806] os.times document points to wrong section of non-Linux manual

2019-08-25 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Serhiy, This sounds good. I will update the PR. -- ___ Python tracker ___ ___

[issue37805] json.dump(..., skipkeys=True) has no unit tests

2019-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31706] urlencode should accept generator as values for mappings when doseq=True

2019-08-25 Thread Tal Einat
Tal Einat added the comment: IMO the benefit here is very small and not worth the added complexity (implementation + tests + docs + maintenance). -- nosy: +taleinat ___ Python tracker

[issue37805] json.dump(..., skipkeys=True) has no unit tests

2019-08-25 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +15176 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15489 ___ Python tracker ___

[issue2506] Add mechanism to disable optimizations

2019-08-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: There are different optimizations on different levels (AST, bytecode generation, peepholer), would be nice to control them separately. This means that we should pass a bitset to the compiler. -- ___ Python

[issue25026] (FreeBSD/OSX) Fix fcntl module to accept 'unsigned long' type commands for ioctl(2).

2019-08-25 Thread Dong-hee Na
Dong-hee Na added the comment: Can I take a look at this issue? Is there anything should I care about except update clinic? Thanks! -- nosy: +corona10 ___ Python tracker ___

[issue37802] micro-optimization of PyLong_FromSize_t()

2019-08-25 Thread Sergey Fedoseev
Sergey Fedoseev added the comment: Previous benchmarks results were obtained with non-LTO build. Here are results for LTO build: $ python -m perf timeit -s "from itertools import repeat; _len = repeat(None, 0).__length_hint__" "_len()" --compare-to=../cpython-master/venv/bin/python

[issue37940] Add xml.tool to pretty print XML like json.tool

2019-08-25 Thread Stefan Behnel
Stefan Behnel added the comment: I agree that formatting is not a use case by itself. I like the idea of XPath grepping, though, especially *without* pretty printing, i.e. one result per line. I admit that there is no strong reason for adding such a command line tool to the stdlib, though.

[issue34880] About the "assert" bytecode

2019-08-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset ce6a070414ed1e1374d1e6212bfbff61b6d5d755 by Serhiy Storchaka (Zackery Spytz) in branch 'master': bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073) https://github.com/python/cpython/commit/ce6a070414ed1e1374d1e6212bfbff61b6d5d755

[issue37942] Generate correct error check for PyFloat_AsDouble

2019-08-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: How large is benefit from special casing exact floats? -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue20806] os.times document points to wrong section of non-Linux manual

2019-08-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Section 3p is OS specific (Debian and derivatives). `man 3 times` works as well. But the manpages-posix-dev is not installed by default, so changing this will add a regression on Linux. I thank that it would be better to add both references, times(2) and

[issue36670] regrtest: win_utils decodes typeperf output from the wrong encoding (test suite broken due to cpu usage feature on win 10/ german)

2019-08-25 Thread Lorenz Mende
Change by Lorenz Mende : -- keywords: +patch pull_requests: +15175 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/15488 ___ Python tracker

[issue37940] Add xml.tool to pretty print XML like json.tool

2019-08-25 Thread Raymond Hettinger
Raymond Hettinger added the comment: I don't think this should be done: * Guido didn't want Python to grow into a collection of command-line tools * Browsers like Chrome already provide XML viewers * If you pretty print JSON, you don't change its meaning, but for XML, it adds "text" and

[issue37940] Add xml.tool to pretty print XML like json.tool

2019-08-25 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks Stefan for the link. XPath support sounds cool to me given that there is already support in stdlib. It could help with filtering using xml.tool itself instead of passing the output to another command to filter. My initial approach was to

[issue37905] Improve docs for NormalDist

2019-08-25 Thread Raymond Hettinger
Raymond Hettinger added the comment: * Removed external links in overlap() docs * Removed "same heights" example * Chose more stable parameters for the Monte Carlo model * Made the example reproducible by recording a seed value -- resolution: -> fixed stage: patch review -> resolved

[issue37905] Improve docs for NormalDist

2019-08-25 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 970548c00b366dcb8eb0c2bec0ffcab30ba03aee by Raymond Hettinger (Miss Islington (bot)) in branch '3.8': bpo-37905: Improve docs for NormalDist (GH-15486) (GH-15487)

[issue37905] Improve docs for NormalDist

2019-08-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +15174 pull_request: https://github.com/python/cpython/pull/15487 ___ Python tracker ___

[issue37905] Improve docs for NormalDist

2019-08-25 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 8371799e300475c8f9f967e900816218d3500e5d by Raymond Hettinger in branch 'master': bpo-37905: Improve docs for NormalDist (GH-15486) https://github.com/python/cpython/commit/8371799e300475c8f9f967e900816218d3500e5d --

[issue37905] Improve docs for NormalDist

2019-08-25 Thread Raymond Hettinger
Change by Raymond Hettinger : -- keywords: +patch pull_requests: +15173 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15486 ___ Python tracker

[issue23423] XPath Support in ElementTree doc omission

2019-08-25 Thread Stefan Behnel
Stefan Behnel added the comment: Already fixed in later versions of the documentation: https://docs.python.org/3/library/xml.etree.elementtree.html#supported-xpath-syntax Note that Py3.4 is no longer maintained. -- resolution: -> out of date stage: -> resolved status: open ->

[issue23423] XPath Support in ElementTree doc omission

2019-08-25 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +scoder ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37837] add internal _PyLong_FromUnsignedChar() function

2019-08-25 Thread Greg Price
Greg Price added the comment: Very interesting, thanks! It looks like with LTO enabled, this optimization has no effect at all. This change adds significant complexity, and it seems like the hoped-for payoff is entirely in terms of performance on rather narrowly-focused microbenchmarks.

[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-25 Thread Raymond Hettinger
Raymond Hettinger added the comment: If it matters, I'm on Mojave 10.14.6 -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue37929] IDLE: OK sometimes fails to close configdialog

2019-08-25 Thread Tal Einat
Tal Einat added the comment: Fixed. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue36205] Python 3.7 and 3.8 process_time is not reported correctly when built on older macOS versions

2019-08-25 Thread Raymond Hettinger
Raymond Hettinger added the comment: Something in the release build process is triggering this behavior (perhaps PGO). I observe the bug on the python.org official 3.8b3 release, official 3.7 release, but not in the official 3.6 release: $ python3.8 ~/time_compare.py Python

[issue37929] IDLE: OK sometimes fails to close configdialog

2019-08-25 Thread miss-islington
miss-islington added the comment: New changeset e266d062e017b122b9741db2bd5fb99742378623 by Miss Islington (bot) in branch '3.8': bpo-37929: IDLE: avoid Squeezer-related config dialog crashes (GH-15452) https://github.com/python/cpython/commit/e266d062e017b122b9741db2bd5fb99742378623

[issue37929] IDLE: OK sometimes fails to close configdialog

2019-08-25 Thread miss-islington
miss-islington added the comment: New changeset f2b468dd6d0bdbe2e87c0ca7515800a115e95e54 by Miss Islington (bot) in branch '3.7': bpo-37929: IDLE: avoid Squeezer-related config dialog crashes (GH-15452) https://github.com/python/cpython/commit/f2b468dd6d0bdbe2e87c0ca7515800a115e95e54

[issue35855] IDLE squeezer: improve unsqueezing and autosqueeze default

2019-08-25 Thread Tal Einat
Tal Einat added the comment: See issue #37827 regarding handling of progress output, as written by tensorflow.keras for example. -- versions: +Python 3.9 ___ Python tracker