[issue42410] Raise a pickleError when convert _functools module to use PyType_FromModuleAndSpec

2020-11-24 Thread hai shi
Change by hai shi : -- resolution: -> not a bug ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue42410] Raise a pickleError when convert _functools module to use PyType_FromModuleAndSpec

2020-11-24 Thread hai shi
Change by hai shi : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue42101] Allow inheritance of Venvs

2020-11-24 Thread Matthias Bussonnier
Change by Matthias Bussonnier : -- keywords: +patch pull_requests: +22393 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23504 ___ Python tracker

[issue42456] Logical Error

2020-11-24 Thread Nishant Gautam
New submission from Nishant Gautam : The python programming give wrong output. If any algorithm develop in python then, may be that will be affected by this. -- files: 0_PROOF.png hgrepos: 394 messages: 381787 nosy: Kshitish priority: normal severity: normal status: open title: Logical

[issue42454] Move slice creation to the compiler for constants

2020-11-24 Thread Raymond Hettinger
Raymond Hettinger added the comment: Mostly, +1 from me as well. If anything starts to rely on hashability, it will need a fallback path since slice objects are allowed to contain arbitrary objects (which might not themselves be hashable): s = slice([], []). -- __

[issue42457] ArgumentParser nested subparsers resolve paths in improper order

2020-11-24 Thread Carson Wilber
New submission from Carson Wilber : ArgumentParser improperly resolves arguments in an improper order when using nested subparsers if there are required arguments at more than one layer. A minimum viable reproduction is to create a set of subparsers on a primary parser, and a set of subparser

[issue42456] Logical Error

2020-11-24 Thread Tim Peters
Tim Peters added the comment: There's no bug here. "&" is the bitwise Boolean logical-and operator on integers. For example, >>> 1 & 2 0 >>> 1 & 3 1 It binds more tightly than the "==" equality-testing operator. To get the result you want, you would need to add more parentheses to override

[issue42454] Move slice creation to the compiler for constants

2020-11-24 Thread Josh Rosenberg
Josh Rosenberg added the comment: There is an open issue for this already, under #11107 (a reopen of the closed #2268, where the reopen was justified due to Python 3 making slice objects more common), just so you know. I made a stab at this a while ago and gave up due to the problems with ma

[issue41878] python3 fails to use custom mapping object as symbols in eval()

2020-11-24 Thread Josh Rosenberg
Change by Josh Rosenberg : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python

[issue42458] Pathlib resolve() on Mac Catalina prepends secret path

2020-11-24 Thread John Engelke
New submission from John Engelke : On Mac OS X Catalina+, Pathlib's resolve() method prepends the System Integrity Protection (SIP) path to the front of the resolved Path, whether you like it or not. >>> from pathlib import Path >>> host_path_str = "/home/somewhere/there/../nowhere" >>> host

[issue42457] ArgumentParser nested subparsers resolve paths in improper order

2020-11-24 Thread Alexey Izbyshev
Change by Alexey Izbyshev : -- nosy: +rhettinger versions: -Python 3.6, Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mail

[issue42455] Add decorator_with_params function to functools module

2020-11-24 Thread Yurii Karabas
Yurii Karabas <1998uri...@gmail.com> added the comment: Add Raymond Hettinger because he is at `Expert Index` for `functools` module -- nosy: +rhettinger ___ Python tracker ___

[issue42392] remove the 'loop' parameter from __init__ in all classes in asyncio.locks

2020-11-24 Thread Yurii Karabas
Yurii Karabas <1998uri...@gmail.com> added the comment: Should I create a separate issue for every PR or they all can be done in the scope of this PR (we can update issue title to match what was done)? -- ___ Python tracker

<    1   2