da-woods

Results 135 issues of da-woods

Essentially as far as I can tell the only thing we can't really do is PyObject_CallFinalizerFromDealloc. So we can define `tp_finalize` in extension types. And that works providing we don't...

Fixes #6409 I think: 1. Graal doesn't like what we're doing with byte code arrays and line table 2. Graal wants the line table to be `b""`, not `NULL`. Also...

### Describe the bug ...when compiling itself ### Code to reproduce the behaviour: `python3 setup.py build_ext -if` gives the warning ``` warning: Cython/Plex/Actions.py:8:4: noexcept clause is ignored for function returning...

```python cdef class Field: _internal_type = None cpdef public parse(self, value): if value is None or type(value) is self._internal_type: return value return self._internal_type(value) cdef class StrField(Field): _internal_type = str cdef...

# Bug report ### Bug description: To be clear - this issue is just about running the Cython itself (i.e. pure Python code). It is not about compiled extension modules....

type-bug
interpreter-core
3.14