Jingchen Ye

Results 34 comments of Jingchen Ye

i am trying to fix current runtime errors, including #15

Hi @blais ! Is there any further progress on this issue?

There are several meta issue trackers for different topics. Shall we add a `meta` flags for them?

It works perfectly in version 0.5.6 now.

You might use `WORD_SIZE*1` and `WORD_SIZE*2` to fix the failure on win32

@sobolevn You can just replace `+4` with `+ WORD_SIZE*1` and replace `+8` with `+ WORD_SIZE*2` in `testTypeAlias_toplevel`.

Hi! Thanks for reporting. Actually mypy/c hasn't officially support python 3.10 yet.

Discard the `Final` annotation of `commits_url` might be an easy way to fix your issue.

I have tried to replace `PyDict_Size` with a C wrapper function like this: ```c Py_ssize_t CPyDict_Size(PyObject *dict) { if (PyDict_CheckExact(dict)) { return PyDict_Size(dict); } else { return PyObject_Size(dict); } }...