Ankit Kumar Pandey

Results 28 comments of Ankit Kumar Pandey

Yes, I build with master version of CPython (Python 3.12.0a0 (heads/main:16b6e14) [GCC 11.2.0] on linux). Might need to dig deeper.

Pip freeze result as follows: `Cython==0.29.30`

I did try that but it is still failing with Cython==3.0.0a10 (Cython master) Might need to wait for 3.0.0a11

Error log [error.txt](https://github.com/psycopg/psycopg/files/9151486/error.txt)

Hey @dvarrazzo Can I take this up? Also, can you suggest some good starting pointers?

> @itsankitkp it's in progress in #332 Sorry I missed that, thanks for head up

Thanks a lot for looking this up. I have added replies in PR. And sorry for late reply, my event loop was bit stuck :)

Is this fixed now? in rustpython (317f4494) sys.flags.int_max_str_digits returns -1 sys.get_int_max_str_digits() returns 4300 in cpython 3.11.6 same results as above. Also, worked fine with `-X int_max_str_digits` flag

> > in cpython 3.11.6 > > Have you tried CPython 3.12? Tried latest cpython (3.13 dev version) both sys.flags.int_max_str_digits and sys.get_int_max_str_digits() returns 4300 its coming from here: https://github.com/python/cpython/pull/96499

#2. pypy adds site-packages to Lib/pypy3.8 I checked code in ` pypy3.8-v7.3.11-linux64` Their sysconfig looks like this (for schemes) ```python 'posix_prefix': { 'stdlib': '{installed_base}/lib/{implementation_lower}{py_version_short}', 'platstdlib': '{platbase}/lib/{implementation_lower}{py_version_short}', 'purelib': '{base}/lib/{implementation_lower}{py_version_short}/site-packages', 'platlib': '{platbase}/lib/{implementation_lower}{py_version_short}/site-packages',...