[issue40912] _PyOS_SigintEvent is never closed on Windows

2020-06-11 Thread Tim Golden
Change by Tim Golden : -- assignee: -> tim.golden ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40913] time.sleep ignores errors on Windows

2020-06-11 Thread Tim Golden
Tim Golden added the comment: Thanks, Eryk. I've had a couple of casts at this (and also with an eye to https://bugs.python.org/issue40912 in a very similar area). Trouble is I can't come up with a way of adding a set.. function which doesn't seem wholly artificial, given that it's

[issue40913] time.sleep ignores errors on Windows

2020-06-11 Thread Tim Golden
Change by Tim Golden : -- assignee: -> tim.golden ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40906] Unable to import module due to python unable to resolve dependecies

2020-06-11 Thread Saba Kauser
Saba Kauser added the comment: Thanks Steve! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40940] How to update pip permanently for new venv?

2020-06-11 Thread tillus
tillus added the comment: If it is not a bug, then I would strongly suggest it as a feature request! Allright we can track it on the other issue! Thank you. -- ___ Python tracker

[issue40275] test.support has way too many imports

2020-06-11 Thread hai shi
Change by hai shi : -- pull_requests: +20019 pull_request: https://github.com/python/cpython/pull/20824 ___ Python tracker ___ ___

[issue35019] Allow ipaddres.IPv4/v6Address in asyncio.create_server

2020-06-11 Thread Inada Naoki
Inada Naoki added the comment: I feel ABC is too much for just single dunder method. -- nosy: +inada.naoki ___ Python tracker ___

[issue40950] PEP 3121 applied to nis module

2020-06-11 Thread Dong-hee Na
New submission from Dong-hee Na : New changeset ddef3bdc7b254a7e1129a52c17d79cb7c73a88f5 by Dong-hee Na in branch 'master': bpo-40950: Port nis module to multiphase initialization (GH-20811) https://github.com/python/cpython/commit/ddef3bdc7b254a7e1129a52c17d79cb7c73a88f5 --

[issue40950] PEP 3121 applied to nis module

2020-06-11 Thread Dong-hee Na
Change by Dong-hee Na : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue40917] pickle exceptions with mandatory keyword args will traceback

2020-06-11 Thread Toshio Kuratomi
Toshio Kuratomi added the comment: Thanks! I confirm that your PR https://github.com/python/cpython/pull/11580 for https://bugs.python.org/issue27015 fixes this problem. Closing this one. -- resolution: -> duplicate stage: -> resolved status: open -> closed

[issue40939] Remove the old parser

2020-06-11 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 756180b4bfa09bb77394a2b3754d331181d4f28c by Pablo Galindo in branch 'master': bpo-40939: Clean and adapt the peg_generator directory after deleting the old parser (GH-20822)

[issue40948] Better identify Windows installer as installer only, not runner

2020-06-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: Simple is fine. How about If you want to run Python, press Start and find 'Python 3.x' under 'P', or enter 'python' in the "Search for anything" box on the taskbar. If you don't have the time right now, where should this go? --

[issue40939] Remove the old parser

2020-06-11 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +20018 pull_request: https://github.com/python/cpython/pull/20822 ___ Python tracker ___

[issue40924] Recent importlib change breaks most recent certifi == 2020.4.5.2

2020-06-11 Thread Jason R. Coombs
Change by Jason R. Coombs : -- pull_requests: +20017 pull_request: https://github.com/python/cpython/pull/20820 ___ Python tracker ___

Re: Typing, how come that :int is not ensuring int parameter?

2020-06-11 Thread DL Neil via Python-list
On 12/06/20 9:32 AM, zljubi...@gmail.com wrote: OK, as I can see nothing is enforced but I can use mypy and tests for the purpose. Exactly! Well done - Python uses 'duck typing' and thus when the Typing module was added, it became an option. As mentioned elsewhere, it provides "hints" at

[issue40025] enum: _generate_next_value_ is not called if its definition occurs after calls to auto()

2020-06-11 Thread Ethan Furman
Ethan Furman added the comment: New changeset ebd44003c9e206755e5e28716242ed8941495a62 by Miss Islington (bot) in branch '3.7': bpo-40025: Require _generate_next_value_ to be defined before members (GH-19762) https://github.com/python/cpython/commit/ebd44003c9e206755e5e28716242ed8941495a62

Re: Typing, how come that :int is not ensuring int parameter?

2020-06-11 Thread zljubisic
OK, as I can see nothing is enforced but I can use mypy and tests for the purpose. As I am using pycharm, looks like I need a plugin for mypy. There are two of them out there: non official: https://plugins.jetbrains.com/plugin/11086-mypy and official:

Re: Typing, how come that :int is not ensuring int parameter?

2020-06-11 Thread DL Neil via Python-list
On 12/06/20 8:51 AM, zljubi...@gmail.com wrote: Hi, If I run this code: class Property: def __init__(self, var: int): self.a: int = var @property def a(self): return self.__a @a.setter def a(self, var: int): if var > 0 and var % 2 == 0:

Re: Typing, how come that :int is not ensuring int parameter?

2020-06-11 Thread Barry Scott
> On 11 Jun 2020, at 21:51, zljubi...@gmail.com wrote: > > Hi, > > If I run this code: > class Property: > >def __init__(self, var: int): >self.a: int = var > >@property >def a(self): >return self.__a > >@a.setter >def a(self, var: int): >if var

[issue6721] Locks in the standard library should be sanitized on fork

2020-06-11 Thread Jesse Farnham
Change by Jesse Farnham : -- nosy: +jesse.farnham ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

Re: Syntax Help

2020-06-11 Thread DL Neil via Python-list
On 12/06/20 12:13 AM, Terry Reedy wrote: On 6/11/2020 6:03 AM, John Weller wrote: I have been able to find answers to most problems by Googling but couldn't work out a suitable query for this one. That is why I and others have made the Symbols index as complete as possible.  If anything

Typing, how come that :int is not ensuring int parameter?

2020-06-11 Thread zljubisic
Hi, If I run this code: class Property: def __init__(self, var: int): self.a: int = var @property def a(self): return self.__a @a.setter def a(self, var: int): if var > 0 and var % 2 == 0: self.__a = var else: self.__a

[issue37747] _markupbase.py fails with TypeError on invalid keyword in marked section

2020-06-11 Thread Leonard Richardson
Leonard Richardson added the comment: This was also recently filed as a bug against Beautiful Soup, a package I maintain, using Python 3.8. (https://bugs.launchpad.net/beautifulsoup/+bug/1883104) The attached script reproduces the problem without using external packages. -- nosy:

[issue40626] application/x-hdf5 mime type missing from mimetypes library

2020-06-11 Thread A.M. Kuchling
A.M. Kuchling added the comment: MIME type added to master and 3.8 branches. Thanks for your patch! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue40626] application/x-hdf5 mime type missing from mimetypes library

2020-06-11 Thread miss-islington
miss-islington added the comment: New changeset a3d6d23a923d62a713b9e4536d5f7ce7313d99c7 by Miss Islington (bot) in branch '3.8': bpo-40626: Support HDF5 in mimetypes (GH-20042) https://github.com/python/cpython/commit/a3d6d23a923d62a713b9e4536d5f7ce7313d99c7 --

Re: repair modify uninstall

2020-06-11 Thread Grant Edwards
On 2020-06-11, Terry Reedy wrote: > >> Indeed. Is the file name not clear that it's an installer? > > No. python-3.8.3-amd64.exe, which is typical naming for install files. > > I opened https://bugs.python.org/issue40948 and suggested adding > '-setup' or '-install', An excellent suggestion.

[issue40626] application/x-hdf5 mime type missing from mimetypes library

2020-06-11 Thread miss-islington
Change by miss-islington : -- keywords: +patch nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +20016 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20818 ___ Python tracker

[issue40626] application/x-hdf5 mime type missing from mimetypes library

2020-06-11 Thread A.M. Kuchling
A.M. Kuchling added the comment: New changeset 60c2a810e37994fc640c58d0ef45b6843354b770 by MARK SCHWAB in branch 'master': bpo-40626: Support HDF5 in mimetypes (GH-20042) https://github.com/python/cpython/commit/60c2a810e37994fc640c58d0ef45b6843354b770 -- nosy: +akuchling

Re: Fwd: python 3.8.3 fails

2020-06-11 Thread MRAB
On 2020-06-11 15:58, Avraham Markov wrote: Please suggest something to fix -- Forwarded message - From: Avraham Markov Date: Thu, Jun 11, 2020 at 5:50 PM Subject: python 3.8.3 fails To: Hello, I successfully installed Python 3.8.3 (64-bit) at Windows 10 LTSC 64 bit by

[issue29620] unittest.TestCase.assertWarns raises RuntimeEror if sys.modules changes size

2020-06-11 Thread A.M. Kuchling
A.M. Kuchling added the comment: Changes applied to master, 3.8, and 3.7. Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue29620] unittest.TestCase.assertWarns raises RuntimeEror if sys.modules changes size

2020-06-11 Thread A.M. Kuchling
A.M. Kuchling added the comment: New changeset f881c869753fb2b1b7aef353416893190251c539 by Miss Islington (bot) in branch '3.7': bpo-29620: iterate over a copy of sys.modules (GH-4800) (GH-20817) https://github.com/python/cpython/commit/f881c869753fb2b1b7aef353416893190251c539 --

[issue29620] unittest.TestCase.assertWarns raises RuntimeEror if sys.modules changes size

2020-06-11 Thread A.M. Kuchling
A.M. Kuchling added the comment: New changeset 3e499cda47afe2282ca3f1d04151e2c86f2e7e09 by Miss Islington (bot) in branch '3.8': bpo-29620: iterate over a copy of sys.modules (GH-4800) (GH-20816) https://github.com/python/cpython/commit/3e499cda47afe2282ca3f1d04151e2c86f2e7e09 --

[issue40939] Remove the old parser

2020-06-11 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 3782497cc22e70b41e32ac09cb06d3948074d8a7 by Pablo Galindo in branch '3.9': [3.9] bpo-40939: Fix test_keyword for the old parser (GH-20814) https://github.com/python/cpython/commit/3782497cc22e70b41e32ac09cb06d3948074d8a7 --

[issue29620] unittest.TestCase.assertWarns raises RuntimeEror if sys.modules changes size

2020-06-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +20015 pull_request: https://github.com/python/cpython/pull/20817 ___ Python tracker ___

[issue29620] unittest.TestCase.assertWarns raises RuntimeEror if sys.modules changes size

2020-06-11 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 6.0 -> 7.0 pull_requests: +20014 pull_request: https://github.com/python/cpython/pull/20816 ___ Python tracker

Re: The FaQ project - Single or Double quotes

2020-06-11 Thread Abdur-Rahmaan Janhangeer
I'm still unsure whether or not to have a summary instead of just listing the texts Kind Regards, Abdur-Rahmaan Janhangeer compileralchemy | blog github Mauritius On Thu, Jun 11, 2020

[issue29620] unittest.TestCase.assertWarns raises RuntimeEror if sys.modules changes size

2020-06-11 Thread A.M. Kuchling
A.M. Kuchling added the comment: New changeset 46398fba4d66ad342cf2504ef947b5fb857423b2 by kernc in branch 'master': bpo-29620: iterate over a copy of sys.modules (GH-4800) https://github.com/python/cpython/commit/46398fba4d66ad342cf2504ef947b5fb857423b2 -- nosy: +akuchling

The FaQ project - Single or Double quotes

2020-06-11 Thread Abdur-Rahmaan Janhangeer
Since the single vs double quote thread i decided to reactivate the FaQ project. You can view it here https://abdur-rahmaanj.github.io/pyfaq/[list]_Single_or_double_quotes.html The index has some some more summaries: https://abdur-rahmaanj.github.io/pyfaq/

[issue40940] How to update pip permanently for new venv?

2020-06-11 Thread Ned Deily
Ned Deily added the comment: Also, this issue has come up before and is discussed in more detail in Issue37107, so let's continue any further discussion there. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> ensurepip --upgrade doesn't change

[issue40939] Remove the old parser

2020-06-11 Thread Brandt Bucher
Change by Brandt Bucher : -- nosy: +brandtbucher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40855] statistics.stdev ignore xbar argument

2020-06-11 Thread Raymond Hettinger
Raymond Hettinger added the comment: > do you have any comment on my previous answer? I see what you're trying to do but think that interpretation is surprising and is at odds with the existing and intended uses of the *xbar* argument. The goals were to allow the mean to be precomputed

[issue40939] Remove the old parser

2020-06-11 Thread miss-islington
miss-islington added the comment: New changeset 436b648910c27baf8164a6d46d746d36d8a93478 by Pablo Galindo in branch 'master': bpo-40939: Remove some extra references to PYTHONOLDPARSER (GH-20815) https://github.com/python/cpython/commit/436b648910c27baf8164a6d46d746d36d8a93478 --

Fwd: python 3.8.3 fails

2020-06-11 Thread Avraham Markov
Please suggest something to fix -- Forwarded message - From: Avraham Markov Date: Thu, Jun 11, 2020 at 5:50 PM Subject: python 3.8.3 fails To: Hello, I successfully installed Python 3.8.3 (64-bit) at Windows 10 LTSC 64 bit by python-3.8.3-amd64 installer from

[issue40940] How to update pip permanently for new venv?

2020-06-11 Thread Ned Deily
Ned Deily added the comment: Thanks for the report. I have to agree that the behavior is a little bit counterintuitive but I believe everything is working as designed and documented. It all comes down to the fact that the ensurepip module is only concerned with the version of pip bundled

Re: Syntax Help

2020-06-11 Thread Terry Reedy
On 6/11/2020 6:03 AM, John Weller wrote: I have been able to find answers to most problems by Googling but couldn't work out a suitable query for this one. That is why I and others have made the Symbols index as complete as possible. If anything thinks something is missing, say so here. --

Re: pyinstaller

2020-06-11 Thread Grant Edwards
On 2020-06-11, Chris Angelico wrote: > But you DO get to choose what you support. True, for a certain value of "you". The requirement to support certains OSes and versions is often a business decision that is out of the hands of the developer. I suppose the OP could quit and stand on the

Re: repair modify uninstall

2020-06-11 Thread Terry Reedy
On 6/10/2020 11:30 PM, Grant Edwards wrote: On 2020-06-11, Michael Torrie wrote: Since this comes up on a weekly basis, perhaps the installer should open that web page to section 3.8.1 after a successful installation. Maybe users would read that short section and not try to run the installer

[issue40939] Remove the old parser

2020-06-11 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: > A few remaining references to the good old times of the old parser: Thanks Victor, opened https://github.com/python/cpython/pull/20815 to address those. -- ___ Python tracker

[issue40939] Remove the old parser

2020-06-11 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +20013 pull_request: https://github.com/python/cpython/pull/20815 ___ Python tracker ___

[issue40945] TKinter.Tk.geometry(Tk.winfo_geometry()) should be idempotent

2020-06-11 Thread E. Paine
E. Paine added the comment: This is interesting as it works fine on Windows but does the behaviour you describe on Linux. I presume the difference is due to how Tcl/Tk handles the title-bar, in which case this isn't really a tkinter issue and there isn't much that can be done (from a

[issue40939] Remove the old parser

2020-06-11 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +20012 pull_request: https://github.com/python/cpython/pull/20814 ___ Python tracker ___

[issue40939] Remove the old parser

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: A few remaining references to the good old times of the old parser: Programs/_testembed.c:488:putenv("PYTHONOLDPARSER=1"); Programs/_testembed.c:676:putenv("PYTHONOLDPARSER=1"); Tools/scripts/run_tests.py:29:if 'PYTHONOLDPARSER' not in os.environ:

[issue40939] Remove the old parser

2020-06-11 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 1ed83adb0e95305af858bd41af531e487f54fee7 by Pablo Galindo in branch 'master': bpo-40939: Remove the old parser (GH-20768) https://github.com/python/cpython/commit/1ed83adb0e95305af858bd41af531e487f54fee7 --

[issue40854] Allow overriding sys.platlibdir: add PYTHONPLATLIBDIR env var

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: New changeset dc40105c88b968a50c3458e10e1d732e957ef0a3 by Victor Stinner in branch '3.9': bpo-40947: getpath.c uses PyConfig.platlibdir (GH-20807) (GH-20813) https://github.com/python/cpython/commit/dc40105c88b968a50c3458e10e1d732e957ef0a3 --

[issue40947] Replace PLATLIBDIR macro with config->platlibdir

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: Thanks Sandro! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue40947] Replace PLATLIBDIR macro with config->platlibdir

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: New changeset dc40105c88b968a50c3458e10e1d732e957ef0a3 by Victor Stinner in branch '3.9': bpo-40947: getpath.c uses PyConfig.platlibdir (GH-20807) (GH-20813) https://github.com/python/cpython/commit/dc40105c88b968a50c3458e10e1d732e957ef0a3 --

[issue40275] test.support has way too many imports

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: New changeset 30abcd8ab648dbf1803e36a8ba5d93fa019b by Victor Stinner in branch 'master': bpo-40275: Move TransientResource to test_urllib2net (GH-20812) https://github.com/python/cpython/commit/30abcd8ab648dbf1803e36a8ba5d93fa019b --

[issue40948] Better identify Windows installer as installer only, not runner

2020-06-11 Thread Steve Dower
Steve Dower added the comment: The current "using" doc page is way too in-depth, but I'm actually okay with the idea of having a "Did you mean to launch Python? Press 'Start' and type 'Python' to find it" message on the Modify page of the installer. Perhaps the people hitting this problem

[issue40939] Remove the old parser

2020-06-11 Thread Guido van Rossum
Guido van Rossum added the comment: New changeset bcd7deed9118e365c1225de2a2e1a81bf988c6ab by Lysandros Nikolaou in branch 'master': bpo-40939: Remove PEG parser easter egg (__new_parser__) (#20802) https://github.com/python/cpython/commit/bcd7deed9118e365c1225de2a2e1a81bf988c6ab

[issue29633] MSI installer does not pass values as SecureProperty from UI

2020-06-11 Thread Steve Dower
Steve Dower added the comment: We can close it. bdist_msi isn't recommended for any reason, and cx_Freeze isn't ours. -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker

[issue40275] test.support has way too many imports

2020-06-11 Thread hai shi
hai shi added the comment: I propose to start updating tests to use directly support.import_helper and support.os_helper. Hai: do you want to work on that? Maybe start by focusing on import_helper (but if you modify a test, check for also symbols imported from os_helper). > of course, I

[issue40947] Replace PLATLIBDIR macro with config->platlibdir

2020-06-11 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +20010 pull_request: https://github.com/python/cpython/pull/20813 ___ Python tracker ___

[issue40854] Allow overriding sys.platlibdir: add PYTHONPLATLIBDIR env var

2020-06-11 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +20011 pull_request: https://github.com/python/cpython/pull/20813 ___ Python tracker ___

[issue40275] test.support has way too many imports

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: I propose to start updating tests to use directly support.import_helper and support.os_helper. Hai: do you want to work on that? Maybe start by focusing on import_helper (but if you modify a test, check for also symbols imported from os_helper). When you

[issue40275] test.support has way too many imports

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: I'm no longer sure that it's worth it to create support.process_helper. I only see these functions which would be untroversial for process_helper: * wait_process() * reap_children() * args_from_interpreter_flags() * optim_args_from_interpreter_flags()

[issue40275] test.support has way too many imports

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: New changeset 10e6506aa8261aacc89b49e629ae1c927fa5151c by Hai Shi in branch 'master': bpo-40275: Add warnings_helper submodule in test.support (GH-20797) https://github.com/python/cpython/commit/10e6506aa8261aacc89b49e629ae1c927fa5151c --

[issue40275] test.support has way too many imports

2020-06-11 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +20009 pull_request: https://github.com/python/cpython/pull/20812 ___ Python tracker ___

[issue40275] test.support has way too many imports

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: New changeset bdfe9b633a171522bc6cdb7c8aa1215cbd119b59 by Victor Stinner in branch 'master': bpo-40275: test.supports imports lazily fnmatch, glob, struct (GH-20810) https://github.com/python/cpython/commit/bdfe9b633a171522bc6cdb7c8aa1215cbd119b59

[issue40947] Replace PLATLIBDIR macro with config->platlibdir

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: New changeset d72b9644a3e6eec83be48b1ebc2ec6ca776134d3 by Victor Stinner in branch 'master': bpo-40947: getpath.c uses PyConfig.platlibdir (GH-20807) https://github.com/python/cpython/commit/d72b9644a3e6eec83be48b1ebc2ec6ca776134d3 --

[issue40854] Allow overriding sys.platlibdir: add PYTHONPLATLIBDIR env var

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: New changeset d72b9644a3e6eec83be48b1ebc2ec6ca776134d3 by Victor Stinner in branch 'master': bpo-40947: getpath.c uses PyConfig.platlibdir (GH-20807) https://github.com/python/cpython/commit/d72b9644a3e6eec83be48b1ebc2ec6ca776134d3 --

[issue40950] PEP 3121 applied to nis module

2020-06-11 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +20008 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20811 ___ Python tracker ___

[issue40950] PEP 3121 applied to nis module

2020-06-11 Thread Dong-hee Na
Change by Dong-hee Na : -- assignee: corona10 components: Extension Modules nosy: corona10 priority: normal severity: normal status: open title: PEP 3121 applied to nis module type: enhancement versions: Python 3.10 ___ Python tracker

[issue40275] test.support has way too many imports

2020-06-11 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +20007 pull_request: https://github.com/python/cpython/pull/20810 ___ Python tracker ___

[issue40939] Remove the old parser

2020-06-11 Thread Lysandros Nikolaou
Lysandros Nikolaou added the comment: > This change broke this buildbot: GH-20802 fixes this breakage. -- ___ Python tracker ___

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

2020-06-11 Thread kernc
Change by kernc : -- keywords: +patch pull_requests: +20006 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20809 ___ Python tracker ___

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

2020-06-11 Thread kernc
Change by kernc : -- nosy: +kernc versions: +Python 3.10, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue40939] Remove the old parser

2020-06-11 Thread Lysandros Nikolaou
Lysandros Nikolaou added the comment: > Lysandros can you modify PR 20802 to remove it? Yup! -- ___ Python tracker ___ ___

[issue40939] Remove the old parser

2020-06-11 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Ok, let's remove it. Lysandros can you modify PR 20802 to remove it? -- ___ Python tracker ___

[issue40939] Remove the old parser

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: > New changeset 961edf7979ca34d6fe104a1cce005aa8cac35821 by Miss Islington > (bot) in branch '3.9': > bpo-40939: Generate keyword.py using the new parser (GH-20800) This change broke this buildbot: AMD64 Arch Linux VintageParser 3.9:

[issue40949] test_socket: threading_cleanup() failed to cleanup 0 threads (count: 0, dangling: 5)

2020-06-11 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40424] AIX: makexp_aix, parallel build (failures) and ld WARNINGS

2020-06-11 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- nosy: +BTaskaya ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40949] test_socket: threading_cleanup() failed to cleanup 0 threads (count: 0, dangling: 5)

2020-06-11 Thread STINNER Victor
New submission from STINNER Victor : aarch64 RHEL8 Refleaks 3.x: https://buildbot.python.org/all/#/builders/563/builds/127 The system load was quite high (9.95) for "CPU count: 8". 0:22:19 load avg: 9.95 [406/426/2] test_socket failed (env changed) (2 min 41 sec) -- running: test_pydoc (20

[issue40939] Remove the old parser

2020-06-11 Thread Guido van Rossum
Guido van Rossum added the comment: Honestly I see no reason to keep that easter egg. Can we remove it please? -- ___ Python tracker ___

[issue1635741] Py_Finalize() doesn't clear all Python objects at exit

2020-06-11 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +20005 pull_request: https://github.com/python/cpython/pull/20808 ___ Python tracker ___

[issue36560] test_functools leaks randomly 1 memory block

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: AMD64 Fedora Rawhide Refleaks 3.8: https://buildbot.python.org/all/#/builders/79/builds/196 test_functools leaked [1, 1, 1] memory blocks, sum=3 -- ___ Python tracker

[issue28557] error message for bad raw readinto

2020-06-11 Thread Rémi Lapeyre
Change by Rémi Lapeyre : -- versions: +Python 3.10, Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue40854] Allow overriding sys.platlibdir: add PYTHONPLATLIBDIR env var

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: Follow-up: bpo-40947 "Replace PLATLIBDIR macro with config->platlibdir". -- ___ Python tracker ___

[issue40947] Replace PLATLIBDIR macro with config->platlibdir

2020-06-11 Thread STINNER Victor
Change by STINNER Victor : -- versions: +Python 3.10, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue40854] Allow overriding sys.platlibdir: add PYTHONPLATLIBDIR env var

2020-06-11 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +20004 pull_request: https://github.com/python/cpython/pull/20807 ___ Python tracker ___

[issue40947] Replace PLATLIBDIR macro with config->platlibdir

2020-06-11 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +vstinner nosy_count: 1.0 -> 2.0 pull_requests: +20003 pull_request: https://github.com/python/cpython/pull/20807 ___ Python tracker ___

[issue34401] Make test_gdb work on HP-UX

2020-06-11 Thread miss-islington
miss-islington added the comment: New changeset 2f46c65071c5528ce143bd02786f8fe94fe65d1f by Miss Islington (bot) in branch '3.9': bpo-34401: Fix test_gdb for HP GDB version string (GH-20804) https://github.com/python/cpython/commit/2f46c65071c5528ce143bd02786f8fe94fe65d1f --

[issue34401] Make test_gdb work on HP-UX

2020-06-11 Thread miss-islington
miss-islington added the comment: New changeset 5b8e3a533560c39eb40b2fb950d2b14caacfaf6a by Miss Islington (bot) in branch '3.8': bpo-34401: Fix test_gdb for HP GDB version string (GH-20804) https://github.com/python/cpython/commit/5b8e3a533560c39eb40b2fb950d2b14caacfaf6a --

[issue34401] Make test_gdb work on HP-UX

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: Thanks Michael Osipov for the fix! It's already merged into the master branch and will be merged into 3.8 and 3.9 branches as soon as the CI tests pass on the two backport PRs. I don't think that it's worth it to backport the fix to 3.7: this branch is

[issue34401] Make test_gdb work on HP-UX

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: New changeset b2dca49ca3769cb60713f5c2b43e5d5bbdc1f9c7 by Victor Stinner in branch 'master': bpo-34401: Fix test_gdb for HP GDB version string (GH-20804) https://github.com/python/cpython/commit/b2dca49ca3769cb60713f5c2b43e5d5bbdc1f9c7 --

[issue32834] test_gdb fails with Posix locale in 3.7

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: I close the issue. I cannot reproduce the issue on Fedora 32. Please open it if you can still reproduce it on the master branch. In this case, please mention your GDB version, Python version used by GDB and tested Python version. * Python master at commit

[issue34401] Make test_gdb work on HP-UX

2020-06-11 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +20001 pull_request: https://github.com/python/cpython/pull/20805 ___ Python tracker

[issue34401] Make test_gdb work on HP-UX

2020-06-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +20002 pull_request: https://github.com/python/cpython/pull/20806 ___ Python tracker ___

Convert and analyze image data in a spreadsheet.

2020-06-11 Thread Vincent Davis
Looking for a little advise. I have 6x6 color (CIELAB ) data in a spreadsheet (color samples of clothing). I would like to visualize this as an image on a per channel (l,a,b) and as a color image. I can read the data from the spreadsheet. I am not

[issue26788] test_gdb fails all tests on a profile-opt build configured --with-lto

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: I fail to reproduce the issue on the master branch of Python on Fedora 32: * Python master at commit 9727694f08cad4b019d2939224e3416312b1c0e1 * Fedora 32 * gcc (GCC) 10.1.1 * GNU gdb (GDB) Fedora 9.1-5.fc32 Notice that multiple tests are skipped: $

[issue18822] poor proxyval() coverage in test_gdb

2020-06-11 Thread STINNER Victor
STINNER Victor added the comment: No activity for 7 years, I close the issue as out of date. -- nosy: +vstinner resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker

  1   2   >