[issue45521] obmalloc radix tree typo in code

2021-10-21 Thread Neil Schemenauer
Neil Schemenauer added the comment: New changeset 311910b31a4bd94dc79298388b7cb65ca5546438 by Neil Schemenauer in branch 'main': bpo-45521: Fix a bug in the obmalloc radix tree code. (GH-29051) https://github.com/python/cpython/commit/311910b31a4bd94dc79298388b7cb65ca5546438 -- ___

[issue43656] TracebackException or StackSummary.extract with capture_locals=True fail to catch exceptions raised by repr() on value of frame local variable in FrameSummary.__init__.

2021-10-21 Thread Andrei Kulakov
Andrei Kulakov added the comment: Martin: I was also thinking of adding a parameter to `extract()`. The issue I see is that it's still confusing and complicated for new students to understand the issue and find the parameter and understand why it's needed. Joe: one important thing to note is

[issue45521] obmalloc radix tree typo in code

2021-10-21 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +27400 pull_request: https://github.com/python/cpython/pull/29122 ___ Python tracker _

[issue31000] Test failure in resource module on ZFS

2021-10-21 Thread Irit Katriel
Irit Katriel added the comment: Can we/should we do anything about this or shall we close? -- nosy: +iritkatriel resolution: -> third party status: open -> pending ___ Python tracker ___

[issue44019] operator.call/operator.__call__

2021-10-21 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +27401 pull_request: https://github.com/python/cpython/pull/29124 ___ Python tracker ___ _

[issue44019] operator.call/operator.__call__

2021-10-21 Thread Dong-hee Na
Dong-hee Na added the comment: > test___all__ was not supposed to fail with the missing "call" in > operator.__all__? AFAIK, it doesn't check. I add the test for the operator module. -- ___ Python tracker ___

[issue45459] Limited API support for Py_buffer

2021-10-21 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- nosy: +erlendaasland ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue33838] Very slow upload with http.client on Windows when setting timeout

2021-10-21 Thread Ivan Konovalov
Change by Ivan Konovalov : -- versions: +Python 3.10, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue45555] Object stays alive for weak reference if an exception happens in constructor

2021-10-21 Thread Matias G
New submission from Matias G : Hi Python developers, I stumbled on a weird behavior, which might be a bug actually. I am surprised by the output of the following piece of code: ``` import weakref refs = [] class A: def __init__(self): refs.append(weakref.ref(self)) #rais

[issue45556] uuid.uuid4() fast optimization

2021-10-21 Thread Mosquito
New submission from Mosquito : I does a small experiment, and found out that if you generate UUID4 with int instead of sequence of bytes, then the generation of UUID4 occurs up to three times faster. .. code-block: python import random import uuid print("uuid.uuid4()") %timei

[issue45556] uuid.uuid4() fast optimization

2021-10-21 Thread Mosquito
Change by Mosquito : -- pull_requests: +27402 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29125 ___ Python tracker ___

[issue45548] Update Modules/Setup

2021-10-21 Thread Zachary Ware
Change by Zachary Ware : -- stage: patch review -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue45548] Update Modules/Setup

2021-10-21 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +zach.ware stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue41062] Advanced Debugger Support C-API is useless without HEAD_LOCK()/HEAD_UNLOCK()

2021-10-21 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue10566] gdb debugging support additions (Tools/gdb/libpython.py)

2021-10-21 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue26539] frozen executables should have an empty path

2021-10-21 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-

[issue24766] Subclass of property doesn't preserve instance __doc__ when using doc= argument

2021-10-21 Thread Irit Katriel
Irit Katriel added the comment: Reproduced on 3.11. -- nosy: +iritkatriel versions: +Python 3.11 -Python 3.5, Python 3.6 ___ Python tracker ___ ___

[issue45552] Close asyncore/asynchat/smtpd issues and list them here

2021-10-21 Thread Barry A. Warsaw
Change by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue45521] obmalloc radix tree typo in code

2021-10-21 Thread Neil Schemenauer
Neil Schemenauer added the comment: New changeset 1cdac61065e72db60d26e03ef9286d2743d7000e by Miss Islington (bot) in branch '3.10': bpo-45521: Fix a bug in the obmalloc radix tree code. (GH-29051) (GH-29122) https://github.com/python/cpython/commit/1cdac61065e72db60d26e03ef9286d2743d7000e

[issue43532] Add keyword-only fields to dataclasses

2021-10-21 Thread Finite State Machine
Finite State Machine added the comment: I doubt it's worth opening a separate issue for this, so I'll mention it here: In the documentation (https://docs.python.org/3.10/library/dataclasses.html#dataclasses.KW_ONLY) nothing documents KW_ONLY as being new in Python 3.10. -- nosy: +fi

[issue45521] obmalloc radix tree typo in code

2021-10-21 Thread Neil Schemenauer
Change by Neil Schemenauer : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45552] Close asyncore/asynchat/smtpd issues and list them here

2021-10-21 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Thank you for doing this work Irit! Just to point out that anybody who wants a modern replacement for smtpd should look at aiosmtpd: https://aiosmtpd.readthedocs.io/en/latest/ -- ___ Python tracker

[issue45556] uuid.uuid4() fast optimization

2021-10-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: random.getrandbits() is cryptographically weaker than os.urandom(). -- nosy: +rhettinger, serhiy.storchaka ___ Python tracker ___ _

[issue45545] chdir __exit__ is not safe

2021-10-21 Thread Jeremy
Jeremy added the comment: >If os.chdir is in os.supports_fd, the context manager can use dirfd = >os.open(os.getcwd(), os.O_RDONLY). Using an fd should also work around the >deleted directory case, though POSIX doesn't specify whether fchdir() succeeds >in this case. It does in Linux, and th

[issue18618] Need an atexit.register equivalent that also works in subinterps

2021-10-21 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> atexit callbacks should be run at subinterpreter shutdown ___ Python tracker __

[issue42514] Relocatable framework for macOS

2021-10-21 Thread Ned Deily
Change by Ned Deily : -- versions: +Python 3.11 -Python 3.10, Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mai

[issue45549] Seek in file object didn't treat all paths of exceptions

2021-10-21 Thread Eric V. Smith
Eric V. Smith added the comment: That's behavior we can't change without breaking code. And it's documented as working this way, at least on Linux: https://linux.die.net/man/2/lseek -- nosy: +eric.smith ___ Python tracker

[issue45539] Negative lookaround assertions sometimes leak capture groups

2021-10-21 Thread Matthew Barnett
Matthew Barnett added the comment: It's definitely a bug. In order for the pattern to match, the negative lookaround must match, which means that its subexpression mustn't match, so none of the groups in that subexpression have captured. -- versions: +Python 3.10 __

[issue45548] Update Modules/Setup

2021-10-21 Thread Ned Deily
Change by Ned Deily : -- nosy: +ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue44319] setup openssl faild on linux (ubuntu 20.04)

2021-10-21 Thread Devin Prescott
Devin Prescott added the comment: I'm having the same issue trying to build python3.10 on CentOS 7.9 == == $ lsb_release -a Distributor ID: CentOS Description:Cen

[issue39247] dataclass defaults and property don't work together

2021-10-21 Thread Thomas
Thomas added the comment: Hello everyone, A quick look on SO and Google + this python issue + this blog post and its comments: https://florimond.dev/en/posts/2018/10/reconciling-dataclasses-and-properties-in-python/ show that this is still a problem where dataclass users keep hitting a wall

[issue44174] Unclear meaning of _Private__names in enum docs.

2021-10-21 Thread Ethan Furman
Ethan Furman added the comment: New changeset 828722aca4ccba893f6b2e8c1d41fd74fd6e208d by Ethan Furman in branch '3.10': [3.10] bpo-44174: [Enum] add reference to name mangling (GH-29117) https://github.com/python/cpython/commit/828722aca4ccba893f6b2e8c1d41fd74fd6e208d -- _

[issue45540] module.__package__ and module.__spec__.parent have different semantics

2021-10-21 Thread Eric Snow
Eric Snow added the comment: On Wed, Oct 20, 2021 at 6:11 PM Barry A. Warsaw wrote: > I guess a question to answer then is whether we philosophically want the > module attributes to be equivalent to the spec attributes. And by > equivalent, I mean enforced to be exactly so, and thus a proxy.

[issue45540] module.__package__ and module.__spec__.parent have different semantics

2021-10-21 Thread Eric Snow
Eric Snow added the comment: On Wed, Oct 20, 2021 at 6:11 PM Barry A. Warsaw wrote: > This is what leads me to think that having a proxy to keep them in sync and > relaxing the read-only restriction is the path forward, even if writing > __package__ doesn’t make sense. It also seems like the

[issue22789] Compress the marshalled data in PYC files

2021-10-21 Thread Guido van Rossum
Guido van Rossum added the comment: The space savings are nice, but I doubt that it will matter for startup time -- startup is most relevant in situations where it's *hot* (e.g. a shell script that repeatedly calls out to utilities written in Python). -- nosy: +gvanrossum __

[issue45535] Enum's dir() does not contain inherited members

2021-10-21 Thread Alex Waygood
Alex Waygood added the comment: I had a go at writing a patch for `__dir__` that would include any methods an enum class had acquired through `int`/`str`/etc. mixins, while continuing to ignore enum dunders and sunders (as is currently the case). My patch also allows user-defined methods def

[issue45535] Enum's dir() does not contain inherited members

2021-10-21 Thread Alex Waygood
Change by Alex Waygood : Added file: https://bugs.python.org/file50383/enum_dir_output_with_patch.txt ___ Python tracker ___ ___ Python-bugs

[issue33277] Deprecate __loader__, __package__, and __cached__ on modules

2021-10-21 Thread Eric Snow
Eric Snow added the comment: I ended up writing up more thoughts on this in the issue about __package__: https://bugs.python.org/issue45540#msg404619. Users can call importlib.util.find_spec(), which is probably good enough to figure out how a module was originally imported. So I don't have

[issue39247] dataclass defaults and property don't work together

2021-10-21 Thread Thomas
Thomas added the comment: Thinking a little more about this, maybe a different solution would be to have default values be installed at the class level by default without being overwritten in the init, as is the case today. default_factory should keep being set in the init as is the case tod

[issue39247] dataclass defaults and property don't work together

2021-10-21 Thread Thomas
Thomas added the comment: Scratch that last one, it leads to problem when mixing descriptors with actual default values: @dataclass class Foo: bar = field(default=some_descriptor) # technically this is a descriptor field without a default value or at the very least, the dataclass con

[issue44319] setup openssl faild on linux (ubuntu 20.04)

2021-10-21 Thread Christian Heimes
Christian Heimes added the comment: I need more information to assist you. Could you please provide: - the steps how you compiled and install your custom OpenSSL installation - the output of "ls /usr/lib64/openssl" - your config.log file (please upload) - the output of "make -j1" for the steps

[issue45548] Update Modules/Setup

2021-10-21 Thread Christian Heimes
Christian Heimes added the comment: I started https://github.com/python/cpython/compare/main...tiran:configure_pkgconfig?expand=1 to integrate pkg-config with configure. The patchset also contains examples how to pass flags from configure into Makefile and Modules/Setup. -- nosy: +c

[issue45540] module.__package__ and module.__spec__.parent have different semantics

2021-10-21 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Thanks for your comprehensive comments Eric! While I digest them, my TL;DR is that we probably need a PEP to describe everything from the current situation, to the the desired end state and migration path. I'm willing to put that together with you and Bre

[issue42961] Use-after-free (of a heap type) during finalization

2021-10-21 Thread Petr Viktorin
Petr Viktorin added the comment: as far as I can see, this had the same root cause as bpo-44184, and was fixed in GH-26274. FWIW, the reproducers are missing a `Py_DECREF(type)` after `PyDict_SetItemString`/`PyObject_SetAttrString`; those don't steal the reference. That sent me on an unpro

[issue42961] Use-after-free (of a heap type) during finalization

2021-10-21 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +vstinner nosy_count: 3.0 -> 4.0 pull_requests: +27403 pull_request: https://github.com/python/cpython/pull/26274 ___ Python tracker ___ ___

[issue45540] module.__package__ and module.__spec__.parent have different semantics

2021-10-21 Thread Eric Snow
Eric Snow added the comment: On Thu, Oct 21, 2021 at 11:54 AM Barry A. Warsaw wrote: > Thanks for your comprehensive comments Eric! While I digest them, my TL;DR > is that we probably need a PEP to describe everything from the current > situation, to the the desired end state and migration

[issue45556] uuid.uuid4() fast optimization

2021-10-21 Thread Christian Heimes
Christian Heimes added the comment: We use os.urandom() because it is backed by a cryptographicly secure random number generator. The random module uses a non-secure RNG. While RFC 4122 does not mandate a CSRPNG, application often rely on unpredictable UUIDs. Correctness and security is more

[issue44174] Unclear meaning of _Private__names in enum docs.

2021-10-21 Thread Ethan Furman
Change by Ethan Furman : -- pull_requests: +27404 pull_request: https://github.com/python/cpython/pull/29128 ___ Python tracker ___

[issue45546] Unable to pickle enum with nested frozen dataclass?

2021-10-21 Thread Eric Cousineau
Eric Cousineau added the comment: > I get an error with 3.8.10, but not on the main branch (3.11) [...] Confirmed, using 3.11.0a1 (using Docker). Seems like at least the pickling is fixed? > I'm confused -- your initial report talks about pickling fields, but your > tests are pickling the e

[issue44174] Unclear meaning of _Private__names in enum docs.

2021-10-21 Thread Ethan Furman
Ethan Furman added the comment: New changeset e628700dbf2c3376502cbb5a9bff2d58d1102e16 by Ethan Furman in branch '3.9': [3.9] bpo-44174: [Enum] add name-mangling reference (GH-29128) https://github.com/python/cpython/commit/e628700dbf2c3376502cbb5a9bff2d58d1102e16 -- __

[issue44174] Unclear meaning of _Private__names in enum docs.

2021-10-21 Thread Ethan Furman
Change by Ethan Furman : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue45535] Enum's dir() does not contain inherited members

2021-10-21 Thread Ethan Furman
Ethan Furman added the comment: Looks interesting, thank you for the patch. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue45535] Enum's dir() does not contain inherited members

2021-10-21 Thread Ethan Furman
Change by Ethan Furman : -- assignee: -> ethan.furman versions: -Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue24069] Option to delete obsolete bytecode files

2021-10-21 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bu

[issue22268] add dedicated functions mrohasattr and mrogetattr

2021-10-21 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bu

[issue45535] Enum's dir() does not contain inherited members

2021-10-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: There may be a simple error (superfluous .__class__), but I am not sure. BTW, why use mro() instead of __mro__? Most code use __mro__. -- ___ Python tracker _

[issue45557] Issue 42914

2021-10-21 Thread Jean-Philippe VINCENT
New submission from Jean-Philippe VINCENT : Hello, I just tried the new attribute underscore_numbers with pprint, it doesn't work for me. I'm working on Windows. [cid:8779885d-01bf-4162-9427-a44de152f7ac] Best regards, Jean-Philippe -- files: image.png messages: 404636 nosy: jpvince

[issue45557] pprint -> underscore_numbers argument not working

2021-10-21 Thread Jean-Philippe VINCENT
Change by Jean-Philippe VINCENT : -- title: Issue 42914 -> pprint -> underscore_numbers argument not working ___ Python tracker ___

[issue18056] Document importlib._bootstrap.NamespaceLoader

2021-10-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: Close this? As near as I can tell, there is currectly no doc for importlib._bootstrap ('_bootstrap' neither in Index nor importlib doc). Also, it does not currently contain NamespaceLoader (not in dir(importlib._bootstrap). -- nosy: +terry.reedy _

[issue18331] Doc that runpy.run_path and run_module copy module globals

2021-10-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: Nick, is this issue still needed? -- nosy: +terry.reedy title: Document that runpy.run_path and run_module copy the module globals -> Doc that runpy.run_path and run_module copy module globals versions: +Python 3.11 -Python 2.7, Python 3.3, Python 3.4

[issue18056] Document importlib._bootstrap.NamespaceLoader

2021-10-21 Thread Eric Snow
Eric Snow added the comment: See bpo-35673. Also, it is actually in importlib._bootstrap_external. -- nosy: +eric.snow ___ Python tracker ___

[issue5120] Change _tkinter initialization for new versions of Aqua Tk on OS X

2021-10-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: Can we close this? I expect that if crashes were still happening from this cause, there would be a newer issue. -- nosy: +terry.reedy ___ Python tracker ___

[issue45557] pprint -> underscore_numbers argument not working

2021-10-21 Thread Eric V. Smith
Eric V. Smith added the comment: Please do not post screen shots. They don't work for people with vision impairments, and we can't copy and past from them, so it makes it harder for us to help you. It looks like it works with pformat, and not pprint: >>> pprint.pformat(1, underscore_num

[issue5120] Change _tkinter initialization for new versions of Aqua Tk on OS X

2021-10-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: Or should this be marked for 3.11? -- versions: -Python 2.7 ___ Python tracker ___ ___ Python-bug

[issue45557] pprint -> underscore_numbers argument not working

2021-10-21 Thread Eric V. Smith
Eric V. Smith added the comment: It's a bug in pprint.py. PR to follow shortly. -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue18056] Document importlib._bootstrap.NamespaceLoader

2021-10-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: _bootstrap_external also appears to be undocumented. It does has _NamespaceLoader among its 77 entries. -- ___ Python tracker ___ _

[issue45557] pprint -> underscore_numbers argument not working

2021-10-21 Thread Eric V. Smith
Change by Eric V. Smith : -- keywords: +patch pull_requests: +27405 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29129 ___ Python tracker ___ __

[issue45436] test_tk.test_configure_type() fails with Tcl/Tk 8.6.11

2021-10-21 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks for the investigation, E. Paine. So I'm keeping this open then. -- ___ Python tracker ___ ___

[issue45558] shutil.copytree: Give the option to disable copystat

2021-10-21 Thread Doron Behar
Change by Doron Behar : -- components: Library (Lib) nosy: doronbehar priority: normal severity: normal status: open title: shutil.copytree: Give the option to disable copystat type: enhancement versions: Python 3.11 ___ Python tracker

[issue15996] pow() for complex numbers is rough around the edges

2021-10-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: In Windows, I now get the Mark's macOS result instead of the Z.D.Error. >>> (1.0+0j)**(float('inf') + 0j) (nan+nanj) Has there been a revision of complex ** on another issue such that this one is obsolete? -- ___

[issue45559] pprint module does not test pprint.pprint()

2021-10-21 Thread Eric V. Smith
New submission from Eric V. Smith : For example, see issue 45557, where pprint.pformat(underscore_numbers=True) worked, but pprint.pprint(underscore_numbers=True) did not. Testing of pprint.pprint() should be added. -- components: Library (Lib) messages: 404647 nosy: eric.smith priori

[issue45558] shutil.copytree: Give the option to disable copystat

2021-10-21 Thread Doron Behar
Change by Doron Behar : -- keywords: +patch pull_requests: +27406 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29130 ___ Python tracker ___

[issue39247] dataclass defaults and property don't work together

2021-10-21 Thread Michael Robellard
Michael Robellard added the comment: I can confirm that Juan Arrivillaga (juanpa.arrivillaga) workaround does work. Given that it works, then wouldn't it be relatively trivial to do what Thomas701 suggests and add a descriptor parameter to fields. Then apply the descriptor after all the oth

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-10-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset add46f84769a7e6fafa50954f79b7c248231fa4e by E-Paine in branch 'main': bpo-45160: Ttk optionmenu only set variable once (GH-28291) https://github.com/python/cpython/commit/add46f84769a7e6fafa50954f79b7c248231fa4e -- nosy: +lukasz.langa __

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-10-21 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +27407 pull_request: https://github.com/python/cpython/pull/29131 ___ Python tracker _

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-10-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +27408 pull_request: https://github.com/python/cpython/pull/29132 ___ Python tracker ___ __

[issue31000] Test failure in resource module on ZFS

2021-10-21 Thread Gregory P. Smith
Gregory P. Smith added the comment: this is probably somewhat of an edge case. filesystems are presumably free to have their own concepts of granularity on size limit enforcement. zfs may become more popular in future ubuntu versions as they're offering it as a supported primary whole syste

[issue45557] pprint -> underscore_numbers argument not working

2021-10-21 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +27409 pull_request: https://github.com/python/cpython/pull/29133 ___ Python tracker _

[issue45557] pprint -> underscore_numbers argument not working

2021-10-21 Thread Eric V. Smith
Eric V. Smith added the comment: New changeset 087f089e5e04d5b132ffbff0576667d591f13219 by Eric V. Smith in branch 'main': bpo-45557: Fix underscore_numbers in pprint.pprint(). (GH-29129) https://github.com/python/cpython/commit/087f089e5e04d5b132ffbff0576667d591f13219 -- _

[issue43139] test_ttk test_compound, test_tk test_type fail with Tk 8.6.11.1

2021-10-21 Thread Zachary Ware
Zachary Ware added the comment: Closing as a duplicate of bpo-45436; fixes to the tests were committed with that issue number. -- nosy: +zach.ware resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> test_tk.test_configure_type() fails with Tcl/Tk 8.6.1

[issue45436] test_tk.test_configure_type() fails with Tcl/Tk 8.6.11

2021-10-21 Thread Zachary Ware
Zachary Ware added the comment: I'm not sure there's much utility to keeping this issue open: the test failures are fixed with a mild but not unprecedented weakening of the tests, and Tcl/Tk 8.6.11 is in the wild and will remain there, so our tests are likely to need to continue handling its

[issue44970] Re-examine complex pow special case handling

2021-10-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Is not it a duplicate of issue15996? -- ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue44344] Documentation for pow() should include the possibility of complex numbers as a return type

2021-10-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 887a55705bb6c05a507c2886c9978a9e0cff0dd7 by Mark Dickinson in branch 'main': bpo-44344: Document that pow can return a complex number for non-complex inputs. (GH-27853) https://github.com/python/cpython/commit/887a55705bb6c05a507c2886c9978a9e0cff0

[issue44344] Documentation for pow() should include the possibility of complex numbers as a return type

2021-10-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +27411 pull_request: https://github.com/python/cpython/pull/29135 ___ Python tracker ___ __

[issue44344] Documentation for pow() should include the possibility of complex numbers as a return type

2021-10-21 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +27410 pull_request: https://github.com/python/cpython/pull/29134 ___ Python tracker _

[issue31000] Test failure in resource module on ZFS

2021-10-21 Thread Larry Hastings
Larry Hastings added the comment: FWIW the test still fails in exactly the same way. This was building with main, on Pop!_OS 21.04 64-bit. -- ___ Python tracker ___

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-10-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 04485ac9886cd807aae854fb905a88c791cfdde6 by Miss Islington (bot) in branch '3.9': bpo-45160: Ttk optionmenu only set variable once (GH-28291) (GH-29132) https://github.com/python/cpython/commit/04485ac9886cd807aae854fb905a88c791cfdde6 --

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

2021-10-21 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-b

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-10-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 98f157de1260801fd26c72eb6bfae0d9295e5ab3 by Miss Islington (bot) in branch '3.10': bpo-45160: Ttk optionmenu only set variable once (GH-28291) (GH-29131) https://github.com/python/cpython/commit/98f157de1260801fd26c72eb6bfae0d9295e5ab3 --

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-10-21 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks for the fix, E. Paine, and fhdrsdg for the fix! ✨ 🍰 ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-10-21 Thread Łukasz Langa
Change by Łukasz Langa : -- Removed message: https://bugs.python.org/msg404659 ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue45160] ttk.OptionMenu radiobuttons change variable value twice

2021-10-21 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks for the fix, E. Paine, and fhdrsdg for the report! ✨ 🍰 ✨ -- ___ Python tracker ___ ___ Python

[issue23120] installation order of 32bit and 64bit python seems to matter

2021-10-21 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python

[issue45526] Set ADDRESS_BITS to 64 for obmalloc radix tree

2021-10-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 0224b7180b280794b9fba62057b278ffb536c86f by Neil Schemenauer in branch 'main': bpo-45526: obmalloc radix use 64 addr bits (GH-29062) https://github.com/python/cpython/commit/0224b7180b280794b9fba62057b278ffb536c86f -- nosy: +lukasz.langa

[issue45526] Set ADDRESS_BITS to 64 for obmalloc radix tree

2021-10-21 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Neil! ✨ 🍰 ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement ___ Python tracker ___

[issue41983] Missing Documentation AF_PACKET

2021-10-21 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 51375388bee7287be2d942906b48c8cf3f691e8b by andrei kulakov in branch 'main': bpo-41983: add availability info to socket docs (GH-27519) https://github.com/python/cpython/commit/51375388bee7287be2d942906b48c8cf3f691e8b -- nosy: +lukasz.lan

[issue41983] Missing Documentation AF_PACKET

2021-10-21 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +27412 pull_request: https://github.com/python/cpython/pull/29136 ___ Python tracker _

[issue41983] Missing Documentation AF_PACKET

2021-10-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +27413 pull_request: https://github.com/python/cpython/pull/29137 ___ Python tracker ___ __

[issue45557] pprint -> underscore_numbers argument not working

2021-10-21 Thread miss-islington
miss-islington added the comment: New changeset 6b75ad5fd47e5b34a04197927f748d0391898de7 by Miss Islington (bot) in branch '3.10': bpo-45557: Fix underscore_numbers in pprint.pprint(). (GH-29129) https://github.com/python/cpython/commit/6b75ad5fd47e5b34a04197927f748d0391898de7 -- _

[issue43592] test_importlib: test_multiprocessing_pool_circular_import() fails with "Too many open files" error on os.pipe()

2021-10-21 Thread Gregory P. Smith
Gregory P. Smith added the comment: macOS often has an unreasonably low default max number of file descriptors. This is easy to raise from user code, it's a soft limit. https://github.com/python/cpython/pull/29127 is out to try that from regrtest itself. -- assignee: -> gregory.p.

<    1   2   3   >