Victor Stinner

Results 53 issues of Victor Stinner

PyFrame_GetVar() no longer creates a temporary dictionary to get a variable. * Issue: gh-91248

awaiting core review
skip news

The Py_CLEAR(), Py_SETREF() and Py_XSETREF() macros now only evaluate their argument once. If the argument has side effects, these side effects are no longer duplicated. Add test_py_clear() and test_py_setref() unit...

awaiting core review

BPO | [41095](https://bugs.python.org/issue41095) --- | :--- Nosy | @vstinner, @serhiy-storchaka, @1st1, @asottile PRs | python/cpython#21066 *Note: these values reflect the state of the issue at the time it was migrated...

stdlib
3.10

BPO | [40799](https://bugs.python.org/issue40799) --- | :--- Nosy | @vstinner, @ezio-melotti, @serhiy-storchaka, @pganssle, @shihai1991 PRs | python/cpython#20472 *Note: these values reflect the state of the issue at the time it was...

stdlib
3.10

Add COMPILEALL_OPTS variable in Makefile to override compileall options (default: -j0) in "make install". Merge also the 3 compileall commands into a single command building PYC files for the 3...

awaiting core review

Currently, compileall options (``-j0``) are hardcoded. In Fedora, we would like to add ``--hardlink-dupes`` option and also control the number of jobs (ex: replace ``-j0`` with ``-j6``). Fedora downstream issue:...

type-bug

Replace Py_INCREF() and Py_XINCREF() with Py_NewRef() and Py_XNewRef() in Objects/listobject.c. * Issue: gh-99300

awaiting core review
skip news

I added Py_NewRef() and Py_XNewRef() to Python 3.10 C API. IMO using them make to code easier to read and make the code looks "more correct". Examples: (A) Assign +...

type-bug

Replace Py_INCREF() and Py_XINCREF() with Py_NewRef() and Py_XNewRef() in C files of the Objects/ directory. * Issue: gh-99300

awaiting core review
skip news

BPO | [43438](https://bugs.python.org/issue43438) --- | :--- Nosy | @vstinner, @tiran, @zooba, @zkonge, @gousaiyang, @frankli0324 *Note: these values reflect the state of the issue at the time it was migrated and...

docs
3.10