[issue38410] Possible fatal errors due to _PyEval_SetAsyncGen{Finalizer, Firstiter}()

2020-03-26 Thread Steve Dower
Steve Dower added the comment: New changeset 79ceccd1ec6ef7e487da2916f32c6f0d1477bd3d by Zackery Spytz in branch 'master': bpo-38410: Properly handle PySys_Audit() failures (GH-16657) https://github.com/python/cpython/commit/79ceccd1ec6ef7e487da2916f32c6f0d1477bd3d --

[issue38410] Possible fatal errors due to _PyEval_SetAsyncGen{Finalizer, Firstiter}()

2020-03-26 Thread Steve Dower
Steve Dower added the comment: Sorry for missing the pings! My GitHub notifications are a bit of a black hole. I'll merge it now. -- ___ Python tracker ___

[issue40074] pickle module dump and load: add support for string file names

2020-03-26 Thread Diego Palacios
New submission from Diego Palacios : The pickle functions dump and load are often used in the following lines: ```python import pickle fname = '/path/to/file.pickle' with open(fname, 'rb') as f: object = pickle.load(f) ``` The load function should also accept a file name (string) as

[issue40073] AIX: python3 points to "air"

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

[issue40073] AIX: python3 points to "air"

2020-03-26 Thread Michael Felt
Michael Felt added the comment: I tried looking at the blurbs to get an idea of what might have been the change - but nothing to indicate a change to the install process in any of "next" NEWS blurbs that are currently in branch 3.7 NEWS.d/next/Build/README.rst NEWS.d/next/C

[issue40069] Clear .lst files for AIX

2020-03-26 Thread Batuhan Taskaya
Batuhan Taskaya added the comment: > .lst files are not created by default (by Python configure and make). They are an artifact when I configure with xlc (CC=xlc ./configure && make -j24), and as far as I know we already have some compiler-specific clear conditions. --

[issue40073] AIX: python3 points to "air"

2020-03-26 Thread Michael Felt
New submission from Michael Felt : This is a regression in v3.6.10 and v3.7.6 `make install` creates a symbolic link `python3` that points to the executable python3.X In versions v3.6.10 and v3.7.6 the executable is created as python3.Xm while the symbolic link still points to python3.X

[issue38410] Possible fatal errors due to _PyEval_SetAsyncGen{Finalizer, Firstiter}()

2020-03-26 Thread Zackery Spytz
Zackery Spytz added the comment: I had pinged Steve Dower on the PR, but I didn't realize they weren't notified. The merge conflicts have been fixed. -- ___ Python tracker

[issue39502] test_zipfile fails on AIX due to time.localtime

2020-03-26 Thread Michael Felt
Michael Felt added the comment: My apologies for the late reply - Here is 3.6.10: Python 3.6.10 (default, Mar 24 2020, 14:12:31) [C] on aix5 Type "help", "copyright", "credits" or "license" for more information. >>> import time >>> time.gmtime(4386268800) time.struct_time(tm_year=2108,

[issue40069] Clear .lst files for AIX

2020-03-26 Thread Michael Felt
Michael Felt added the comment: the XLC compiler has an option to create "listing" files. The content depends on the arguments passed to the xlc compilers. >From memory (as I always need to look them up) these include -qinfo and >-qsource (plus arguments) FYI: besides showing info such as

[issue40071] test__xxsubinterpreters leaked [1, 1, 1] references: test_ids_global()

2020-03-26 Thread Paulo Henrique Silva
Paulo Henrique Silva added the comment: The module still uses static state. Fixed the leak and will convert it to use per-module state in a separate issue. -- ___ Python tracker

[issue40071] test__xxsubinterpreters leaked [1, 1, 1] references: test_ids_global()

2020-03-26 Thread Paulo Henrique Silva
Change by Paulo Henrique Silva : -- pull_requests: +18532 pull_request: https://github.com/python/cpython/pull/19172 ___ Python tracker ___

[issue40071] test__xxsubinterpreters leaked [1, 1, 1] references: test_ids_global()

2020-03-26 Thread Paulo Henrique Silva
Paulo Henrique Silva added the comment: I've got it, will investigate asap. -- ___ Python tracker ___ ___ Python-bugs-list mailing

<    1   2