[Python-Dev] Re: Improvements to the sys.path initialization documentation

2022-03-03 Thread Victor Stinner
Hi, I tried to document inputs and outputs of Modules/getpath.py in the C API Initialization API: https://docs.python.org/dev/c-api/init_config.html#python-path-configuration I don't know if it would be possible to merge most of these information at a single place to avoid oudated documentation.

[Python-Dev] Re: Python 3.11.0a6 is blocked

2022-03-03 Thread Pablo Galindo Salgado
Hi everyone, Unfortunately, the release of 3.11.0a6 is still blocked because all reflect buildbots are failing: https://buildbot.python.org/all/#/release_status I will try to identify the commit(s) that introduced the regression and revert them, but for the time being the release is on hold, sad

[Python-Dev] Re: Python 3.11.0a6 is blocked

2022-03-03 Thread Pablo Galindo Salgado
Update: Seems that the refleaks have been fixed by Inada-san in this commit: https://github.com/python/cpython/commit/3241cba4ec55ef0b9e73bf7a5a77ef29ae4b8756 I will wait until the buildbots are green and then try to proceed with the release. Thanks! On Thu, 3 Mar 2022 at 20:14, Pablo Galindo S

[Python-Dev] Test error

2022-03-03 Thread sachin1122621003
I am new to open source and think to contribute to python . I was going through the developer guide and when i run this code "./python -m test -j3" on my terminal i got this result which say it fail .Now can someone tell me this is normal or happning to me only . If this happen to everyone how c

[Python-Dev] Re: Test error

2022-03-03 Thread Brett Cannon
You might want to try asking your question at https://mail.python.org/mailman3/lists/core-mentorship.python.org/ which is specifically set up to help people. But in general, all the tests are passing for folks. You will need to run those tests individually to see why they are failing for you. On

[Python-Dev] Re: [python-committers] Re: Python 3.11.0a6 is blocked

2022-03-03 Thread Victor Stinner
By the way, AMD64 Arch Linux Usan 3.x started failing because I enabled more tests on this buildbot yesterday. Previously, "test_faulthandler test_hashlib test_concurrent_futures test_ctypes" were simply skipped on this UBSAN buildbot. I'm working on fixing the 3 failing tests: test_ctypes, test_

[Python-Dev] Defining tiered platform support

2022-03-03 Thread Brett Cannon
Do we officially support NetBSD? Do you know how to find out if we do? You might think to look at https://www.python.org/dev/peps/pep-0011/#supporting-platforms , but that just loosely defines the criteria and it still doesn't list the actual platforms we support. (BTW I don't know if we do officia

[Python-Dev] Re: Test error

2022-03-03 Thread Terry Reedy
On 3/3/2022 3:09 PM, Brett Cannon wrote: You might want to try asking your question at which is specifically set up to help people. But in general, all the tests are passing for folks. You will need to run those tests indivi