[issue44371] asyncio.wait_for does not cancel running tasks in the correct fashion

2021-06-19 Thread Ofek Kirzner
Ofek Kirzner added the comment: Kindly reminder. Thx :) -- resolution: -> remind ___ Python tracker ___ ___ Python-bugs-list

[issue44465] html.escape can be used in a few places in the standard lib instead of similar existing code

2021-06-19 Thread Andrei Kulakov
New submission from Andrei Kulakov : There are a few places where old code does essentially the same thing as `html.escape()`, and can be replaced with html.escape(): - more readable - less error prone on refactorings - will benefit if html.escape() performance is improved in the future -

[issue43476] Enabling access to showsyntaxerror for IDLE's shell

2021-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: The comment should be "# For 3rd party use. See issue 43476." Updates to the pypi url, now https://pypi.org/project/friendly/ should be recorded here on this issue. The undocumented name 'cache' is excluded from linecache.__all__ and therefore private.

[issue44464] Remove flake8 exception for deprecation warning (importlib.metadata)

2021-06-19 Thread Jason R. Coombs
Change by Jason R. Coombs : -- keywords: +patch pull_requests: +25388 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26807 ___ Python tracker ___

[issue44464] Remove flake8 exception for deprecation warning (importlib.metadata)

2021-06-19 Thread Jason R. Coombs
New submission from Jason R. Coombs : importlib_metadata 4.5 (https://importlib-metadata.readthedocs.io/en/latest/history.html#v4-5-0) removed the special exclusion for flake8 in the deprecation warning for deprecated interfaces in entry_points. For the same motivations there, do the same

[issue36621] shutil.rmtree follows junctions on windows

2021-06-19 Thread Irit Katriel
Irit Katriel added the comment: The documentation for rmtree[1] now says: Changed in version 3.8: On Windows, will no longer delete the contents of a directory junction before removing the junction. So I think this issue can be closed. [1]

[issue39452] Improve the __main__ module documentation

2021-06-19 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue17359] Mention "__main__.py" explicitly in command line docs

2021-06-19 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 2.7, Python 3.3, Python 3.4 ___ Python tracker ___ ___ Python-bugs-list

[issue24632] Improve documentation about __main__.py

2021-06-19 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 2.7, Python 3.5, Python 3.6 ___ Python tracker ___ ___ Python-bugs-list

[issue39452] Improve the __main__ module documentation

2021-06-19 Thread Irit Katriel
Irit Katriel added the comment: See also Issue24632 and Issue17359. -- nosy: +iritkatriel ___ Python tracker ___ ___

[issue24632] Improve documentation about __main__.py

2021-06-19 Thread Irit Katriel
Irit Katriel added the comment: See also Issue39452 and Issue17359. -- nosy: +iritkatriel ___ Python tracker ___ ___

[issue17359] Mention "__main__.py" explicitly in command line docs

2021-06-19 Thread Irit Katriel
Irit Katriel added the comment: See also Issue39452. -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing

[issue44459] 3.10b2 -> 3.10b3 regression in importlib.metadata for rinoh

2021-06-19 Thread Jason R. Coombs
Jason R. Coombs added the comment: I submitted https://github.com/brechtm/rinohtype/pull/270 to address the issue in rinohtype. Please feel free to reopen and address the questions posed above if appropriate. -- resolution: -> wont fix stage: -> resolved status: open -> closed

[issue44463] HTTP Cookiejar doesn't support samesite

2021-06-19 Thread Chris Wagner
New submission from Chris Wagner : In 3.8 the samesite attributes was added to http.cookies module. However it hasn't been added to http.cookiejar module. The method: _normalized_cookie_tuples seems to have a hardcoded list of allowable attributes. While the updated standard is still in

[issue44342] enum with inherited type won't pickle

2021-06-19 Thread Ethan Furman
Change by Ethan Furman : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> behavior ___ Python tracker ___

[issue12022] AttributeError should report the same details when raised by lookup_special() as when raised in the REPL

2021-06-19 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue43476] Enabling access to showsyntaxerror for IDLE's shell

2021-06-19 Thread Andre Roberge
Andre Roberge added the comment: Would it be possible to add a single line of code to idlelib's pyshell.py, as indicated below: def showsyntaxerror(self, filename=None): """... """ linecache.cache[""] = linecache.cache[filename] # here tkconsole = self.tkconsole ... Of

[issue44462] multiprocessing.get hangs if the pool is closed in the signal handler

2021-06-19 Thread Chaitanya
New submission from Chaitanya : This is similar to https://bugs.python.org/issue22393 but the child is killed in the Pool.terminate() using SIGTERM i.e., proper way. Run the attached script that runs an indefinite method using multiprocessing.apply_async, and in the signal handler for

[issue44337] Port LOAD_ATTR to adaptive interpreter

2021-06-19 Thread Guido van Rossum
Guido van Rossum added the comment: (That pull request doesn't have anything to do with this issue, but while testing it I did find a crash bug that I've bisected to this issue. See https://github.com/python/cpython/pull/26749#issuecomment-864454848.) --

[issue44337] Port LOAD_ATTR to adaptive interpreter

2021-06-19 Thread Guido van Rossum
Change by Guido van Rossum : -- pull_requests: -25387 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44337] Port LOAD_ATTR to adaptive interpreter

2021-06-19 Thread Guido van Rossum
Change by Guido van Rossum : -- nosy: +gvanrossum nosy_count: 2.0 -> 3.0 pull_requests: +25387 pull_request: https://github.com/python/cpython/pull/26749 ___ Python tracker

[issue44229] test_ssl: test_get_server_certificate() and test_msg_callback_deadlock_bpo43577() fail randomly on the macOS CI

2021-06-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: See #44237 for another repeatedly failing (false positive) ssl test. These and other randomly failing tests should be skipped for routine CI regression testing of PRs. -- nosy: +terry.reedy ___ Python tracker

[issue44458] Duplicate symbol _BUFFER_BLOCK_SIZE when statically linking multiple modules

2021-06-19 Thread Gregory P. Smith
Change by Gregory P. Smith : -- assignee: -> gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22018] signal.set_wakeup_fd() should accept sockets on Windows

2021-06-19 Thread Larry Hastings
Change by Larry Hastings : -- nosy: -larry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12022] AttributeError should report the same details when raised by lookup_special() as when raised in the REPL

2021-06-19 Thread Irit Katriel
Irit Katriel added the comment: I've reproduced this on 3.11 (though the AttributeError is now on __enter__ and not __exit__ as was the case in msg135484): >>> import transaction >>> with transaction: pass ... Traceback (most recent call last): File "", line 1, in AttributeError:

[issue44458] Duplicate symbol _BUFFER_BLOCK_SIZE when statically linking multiple modules

2021-06-19 Thread Ned Deily
Change by Ned Deily : -- nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38291] Deprecate the typing.io and typing.re pseudo-modules

2021-06-19 Thread Guido van Rossum
Guido van Rossum added the comment: New changeset 09eb81711597725f853e4f3b659ce185488b0d8c by Sebastian Rittau in branch 'main': bpo-38291: DeprecationWarning when importing typing.{io,re} (#26719) https://github.com/python/cpython/commit/09eb81711597725f853e4f3b659ce185488b0d8c --

[issue44459] 3.10b2 -> 3.10b3 regression in importlib.metadata for rinoh

2021-06-19 Thread Jason R. Coombs
Jason R. Coombs added the comment: A small patch to rinoh seems to work around the issue: ``` diff --git a/src/rinoh/resource.py b/src/rinoh/resource.py index 57143f9d..586a4bb7 100644 --- a/src/rinoh/resource.py +++ b/src/rinoh/resource.py @@ -132,7 +132,9 @@ class

[issue44461] 'Pdb' object has no attribute 'botframe'

2021-06-19 Thread Jason R. Coombs
Change by Jason R. Coombs : -- keywords: -3.10regression ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44461] 'Pdb' object has no attribute 'botframe'

2021-06-19 Thread Jason R. Coombs
Jason R. Coombs added the comment: I was _unable_ to replicate the issue with a foo.py containing only `raise ValueError`, even with `python -m pdb -m foo`. -- ___ Python tracker

[issue44461] 'Pdb' object has no attribute 'botframe'

2021-06-19 Thread Jason R. Coombs
Jason R. Coombs added the comment: I can replicate the issue with this command: `python -m pdb -m importlib` (since `importlib` isn't executable, it triggers an error in runpy). -- ___ Python tracker

[issue44461] 'Pdb' object has no attribute 'botframe'

2021-06-19 Thread Jason R. Coombs
Jason R. Coombs added the comment: I encountered the same error on Python 3.9. -- versions: +Python 3.9 ___ Python tracker ___ ___

[issue24888] FileNotFoundException raised by subprocess.call

2021-06-19 Thread Irit Katriel
Irit Katriel added the comment: That said, the current wording does seem to imply that only CalledProcessErrors can be raised by this function so it might be worth clarifying that other exceptions can occur if the command could not run at all (without enumerating the precise exceptions).

[issue44459] 3.10b2 -> 3.10b3 regression in importlib.metadata for rinoh

2021-06-19 Thread Jason R. Coombs
Jason R. Coombs added the comment: It seems that even on Python 3.9 or 3.10b2, the [DynamicRinohDistribution](https://github.com/brechtm/rinohtype/blob/e7f1c2c6066303d86cff4105be0829f512059be2/src/rinoh/resource.py#L132) would return `None` for the `name` property (despite the [attempt to

[issue44459] 3.10b2 -> 3.10b3 regression in importlib.metadata for rinoh

2021-06-19 Thread Jason R. Coombs
Change by Jason R. Coombs : -- priority: normal -> deferred blocker ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue16959] rlcompleter doesn't work if __main__ can't be imported

2021-06-19 Thread Irit Katriel
Irit Katriel added the comment: Since this is not currently a problem for you, and nobody else reported it since 2013, I’ll close the issue and if anyone runs into it again we can investigate on current python/app engine versions. -- resolution: -> third party stage: -> resolved

[issue44459] 3.10b2 -> 3.10b3 regression in importlib.metadata for rinoh

2021-06-19 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +3.10regression priority: normal -> deferred blocker ___ Python tracker ___ ___

[issue44459] 3.10b2 -> 3.10b3 regression in importlib.metadata for rinoh

2021-06-19 Thread Jason R. Coombs
Jason R. Coombs added the comment: Running the debugger, I can confirm that Distribution.name is None in this case: ``` ~ $ python3.10 -m pip-run -q rinohtype -- -m pdb -m rinoh --help WARNING: You are using pip version 21.1.1; however, version 21.1.2 is available. You should consider

[issue44461] 'Pdb' object has no attribute 'botframe'

2021-06-19 Thread Jason R. Coombs
New submission from Jason R. Coombs : While doing some debugging on issue44459 using Python 3.10b3, I was using Pdb and after troubleshooting an exception and hitting 'q' to quit, I saw the following: ``` (Pdb) q Traceback (most recent call last): File

[issue44459] 3.10b2 -> 3.10b3 regression in importlib.metadata for rinoh

2021-06-19 Thread Jason R. Coombs
Jason R. Coombs added the comment: I suspect the performance enhancements to distribution deduplication are relevant here. Previously, distributions were deduplicated based on the canonical distribution name. Now they're deduplicated on the normalized name. And it seems that when attempting

[issue44450] Generator expressions trace differently on Windows than on Mac

2021-06-19 Thread STINNER Victor
Change by STINNER Victor : Removed file: https://bugs.python.org/file50119/ខ្មែរសប់លក់ទំនិញគ្រប់ប្រភេទ ___ Python tracker ___ ___

[issue22018] signal.set_wakeup_fd() should accept sockets on Windows

2021-06-19 Thread STINNER Victor
Change by STINNER Victor : -- title: ខ្មែរសប់លក់ទំនិញ -> signal.set_wakeup_fd() should accept sockets on Windows ___ Python tracker ___

[issue22018] ខ្មែរសប់លក់ទំនិញ

2021-06-19 Thread STINNER Victor
Change by STINNER Victor : Removed file: https://bugs.python.org/file50120/ខ្មែរសប់លក់ទំនិញគ្រប់ប្រភេទ ___ Python tracker ___ ___

[issue6871] decimal.py: more format issues

2021-06-19 Thread Eric V. Smith
Eric V. Smith added the comment: Thanks, Irit. I'm closing this as "won't fix". -- resolution: out of date -> wont fix stage: -> resolved status: open -> closed ___ Python tracker

[issue44426] Docs fail to build with Sphinx 4 due to Invalid C declaration

2021-06-19 Thread Mark Dickinson
Mark Dickinson added the comment: New changeset 533bff4e9fe221a7c9cf12795fd2d002e87bfa6a by Miss Islington (bot) in branch '3.9': bpo-44426: Fix use of the C keyword 'default' as a variable name (GH-26798) (GH-26805)

[issue44426] Docs fail to build with Sphinx 4 due to Invalid C declaration

2021-06-19 Thread Mark Dickinson
Mark Dickinson added the comment: New changeset 139c5778c26aaf25b51fcfabd88c99ba728beaea by Miss Islington (bot) in branch '3.10': bpo-44426: Fix use of the C keyword 'default' as a variable name (GH-26798) (GH-26804)

[issue44426] Docs fail to build with Sphinx 4 due to Invalid C declaration

2021-06-19 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +25385 pull_request: https://github.com/python/cpython/pull/26804 ___ Python tracker

[issue44426] Docs fail to build with Sphinx 4 due to Invalid C declaration

2021-06-19 Thread miss-islington
Change by miss-islington : -- pull_requests: +25386 pull_request: https://github.com/python/cpython/pull/26805 ___ Python tracker ___

[issue44426] Docs fail to build with Sphinx 4 due to Invalid C declaration

2021-06-19 Thread Mark Dickinson
Mark Dickinson added the comment: New changeset 291848195f85e23c01adb76d5a0ff9c6eb7f2614 by Mark Dickinson in branch 'main': bpo-44426: Fix use of the C keyword 'default' as a variable name (GH-26798) https://github.com/python/cpython/commit/291848195f85e23c01adb76d5a0ff9c6eb7f2614

[issue44450] Generator expressions trace differently on Windows than on Mac

2021-06-19 Thread E. Paine
Change by E. Paine : -- components: -2to3 (2.x to 3.x conversion tool), Argument Clinic, Build, C API, Cross-Build, Demos and Tools, Distutils, Documentation, Extension Modules, FreeBSD, IDLE, IO, Installation, Library (Lib), Parser, Regular Expressions, SSL, Subinterpreters, Tests,

[issue22018] ខ្មែរសប់លក់ទំនិញ

2021-06-19 Thread HAK CG Gang
Change by HAK CG Gang : -- assignee: -> docs@python components: +2to3 (2.x to 3.x conversion tool), Argument Clinic, Build, C API, Cross-Build, Demos and Tools, Distutils, Documentation, Extension Modules, FreeBSD, IDLE, IO, Installation, Interpreter Core, Library (Lib), Parser,

[issue22018] ខ្មែរសប់លក់ទំនិញ

2021-06-19 Thread HAK CG Gang
Change by HAK CG Gang : Added file: https://bugs.python.org/file50120/ខ្មែរសប់លក់ទំនិញគ្រប់ប្រភេទ ___ Python tracker ___ ___

[issue6871] decimal.py: more format issues

2021-06-19 Thread Irit Katriel
Irit Katriel added the comment: No just trying to sort out the backlog. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue43298] Windows build cannot detect missing Windows SDK

2021-06-19 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.11, Python 3.9 ___ Python tracker ___

[issue43298] Windows build cannot detect missing Windows SDK

2021-06-19 Thread miss-islington
Change by miss-islington : -- pull_requests: +25384 pull_request: https://github.com/python/cpython/pull/26803 ___ Python tracker ___

[issue43298] Windows build cannot detect missing Windows SDK

2021-06-19 Thread Steve Dower
Steve Dower added the comment: New changeset 80190b3e533097b55077becddc75423318ab2371 by Steve Dower in branch 'main': bpo-43298: Improved error message when building without the Windows SDK installed (GH-26800)

[issue43298] Windows build cannot detect missing Windows SDK

2021-06-19 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +25383 pull_request: https://github.com/python/cpython/pull/26802 ___ Python tracker

[issue6871] decimal.py: more format issues

2021-06-19 Thread Eric V. Smith
Eric V. Smith added the comment: I tend to agree with Mark: any change would be disruptive, and it doesn't seem to be causing any real problem. Irit: did you come across this because it's causing a problem somewhere? -- ___ Python tracker

[issue22018] signal.set_wakeup_fd() should accept sockets on Windows

2021-06-19 Thread HAK CG Gang
Change by HAK CG Gang : -- nosy: +habrecord22 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44450] ខ្មែរសប់លក់ទំនិញ

2021-06-19 Thread HAK CG RAP
Change by HAK CG RAP : -- components: +2to3 (2.x to 3.x conversion tool), Argument Clinic, Build, C API, Cross-Build, Demos and Tools, Distutils, Documentation, Extension Modules, FreeBSD, IDLE, IO, Installation, Library (Lib), Parser, Regular Expressions, SSL, Subinterpreters,

[issue44297] Frame with -1 line number

2021-06-19 Thread Mark Shannon
Change by Mark Shannon : -- keywords: +patch pull_requests: +25382 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26801 ___ Python tracker ___

[issue44450] Generator expressions trace differently on Windows than on Mac

2021-06-19 Thread Ned Batchelder
Ned Batchelder added the comment: This happens with all the 3.10 betas, and does not happen in 3.9 and earlier: https://github.com/nedbat/coveragepy/runs/2864611225 (Sorry, other failures with earlier 3.10 betas obscured the mac/win difference.) --

[issue44297] Frame with -1 line number

2021-06-19 Thread Mark Shannon
Mark Shannon added the comment: Thanks Anthony, that's a big help. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue44460] python crashes when pandas reading parquet

2021-06-19 Thread Steve Dower
Steve Dower added the comment: Python 3.6 is no longer supported by us, so unless this occurs with a newer version (which apparently it does not), we're not going to be able to look into it. If this is critical to you, you probably want to get in touch with Anaconda or ActiveState to see

[issue44450] Generator expressions trace differently on Windows than on Mac

2021-06-19 Thread Mark Shannon
Mark Shannon added the comment: Ned, is this a regression (does 3.9 do the right thing on Windows) or an inconsistency between Mac and Windows? I suspect this might have something to do with the PREDICT macros. If that the were the case 3.9 should show the same inconsistency between Windows

[issue44460] python crashes when pandas reading parquet

2021-06-19 Thread Andrey Brykin
Andrey Brykin added the comment: pandas version is 1.1.5 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44460] python crashes when pandas reading parquet

2021-06-19 Thread Andrey Brykin
New submission from Andrey Brykin : Python crashes when running this code (I attached the error message screenshot): import pandas as pd d = {'col1': [[0.] * 25] * 2560} df = pd.DataFrame(data=d) df.to_parquet('data.parquet') for j in range(15): table = pd.read_parquet('data.parquet') There

[issue43298] Windows build cannot detect missing Windows SDK

2021-06-19 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +25381 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26800 ___ Python tracker ___

[issue38820] Make Python compatible with OpenSSL 3.0.0

2021-06-19 Thread miss-islington
miss-islington added the comment: New changeset c6cd2ecdb64d16f640ff255e5a267b95974a8041 by Miss Islington (bot) in branch '3.10': [3.10] bpo-38820: Test with OpenSSL 3.0.0-beta1 (GH-26769) (GH-26799) https://github.com/python/cpython/commit/c6cd2ecdb64d16f640ff255e5a267b95974a8041

[issue29282] Fused multiply-add: proposal to add math.fma()

2021-06-19 Thread Mark Dickinson
Change by Mark Dickinson : -- assignee: mark.dickinson -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6871] decimal.py: more format issues

2021-06-19 Thread Mark Dickinson
Mark Dickinson added the comment: Eric: any thoughts on this? It's looking like a "won't fix" to me. Regardless of what we think the "right" thing to do is, making the float behaviour stricter would be a backwards compatibility break, and relaxing the Decimal behaviour involves either

[issue35714] Document that the null character '\0' terminates a struct format spec

2021-06-19 Thread Mark Dickinson
Mark Dickinson added the comment: Yes, this looks closeable. Thank you! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue38820] Make Python compatible with OpenSSL 3.0.0

2021-06-19 Thread miss-islington
Change by miss-islington : -- pull_requests: +25380 pull_request: https://github.com/python/cpython/pull/26799 ___ Python tracker ___

[issue38820] Make Python compatible with OpenSSL 3.0.0

2021-06-19 Thread Christian Heimes
Christian Heimes added the comment: New changeset 44fb55149934d8fb095edb6fc3f8167208035b96 by Christian Heimes in branch 'main': bpo-38820: Test with OpenSSL 3.0.0-beta1 (GH-26769) https://github.com/python/cpython/commit/44fb55149934d8fb095edb6fc3f8167208035b96 --

[issue44426] Docs fail to build with Sphinx 4 due to Invalid C declaration

2021-06-19 Thread Mark Dickinson
Mark Dickinson added the comment: Fixed in GH-26798 (not yet merged). With that change, the documentation builds cleanly for me with Python 3.9.5 / Sphinx 4.0.2 / blurb 1.0.8 / python-docs-theme 2021.5, using the command $ python -m sphinx -b html -W . build/html --

[issue44426] Docs fail to build with Sphinx 4 due to Invalid C declaration

2021-06-19 Thread Mark Dickinson
Change by Mark Dickinson : -- pull_requests: +25379 stage: resolved -> patch review pull_request: https://github.com/python/cpython/pull/26798 ___ Python tracker ___

[issue44297] Frame with -1 line number

2021-06-19 Thread Anthony Sottile
Anthony Sottile added the comment: here is a minimal reproduction: ```python def iterboom(): raise AssertionError yield 1 next(1 for x in iterboom()) ``` python 3.9: ``` $ python3.9 t.py Traceback (most recent call last): File "/tmp/rinohtype/t.py", line 5, in next(1 for x

[issue44459] 3.10b2 -> 3.10b3 regression in importlib.metadata for rinoh

2021-06-19 Thread Anthony Sottile
New submission from Anthony Sottile : installed from git: ``` $ git remote -v origin https://github.com/brechtm/rinohtype.git (fetch) origin https://github.com/brechtm/rinohtype.git (push) $ git rev-parse HEAD 4054539bae53eaddd10291c8429a1a32aeeb4786 ``` working in 3.10 b2: ```console $