Current Terminal Screen:
bash: cannot set terminal process group (-1): Inappropriate ioctl for device
bash: no job control in this shell
creating stub loader for nogil_ext.cpython-38-x86_64-linux-gnu.so
byte-compiling build/bdist.linux-x86_64/egg/nogil_ext.py to nogil_ext.cpython-38.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying nogil_ext.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying nogil_ext.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying nogil_ext.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying nogil_ext.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
writing build/bdist.linux-x86_64/egg/EGG-INFO/native_libs.txt
zip_safe flag not set; analyzing archive contents...
__pycache__.nogil_ext.cpython-38: module references __file__
creating dist
creating 'dist/nogil_ext-1.0-py3.8-linux-x86_64.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing nogil_ext-1.0-py3.8-linux-x86_64.egg
creating /usr/local/lib/python3.8/site-packages/nogil_ext-1.0-py3.8-linux-x86_64.egg
Extracting nogil_ext-1.0-py3.8-linux-x86_64.egg to /usr/local/lib/python3.8/site-packages
Adding nogil-ext 1.0 to easy-install.pth file

Installed /usr/local/lib/python3.8/site-packages/nogil_ext-1.0-py3.8-linux-x86_64.egg
Processing dependencies for nogil-ext==1.0
Finished processing dependencies for nogil-ext==1.0
root@8beb00c26e2f:/app# /usr/local/bin/python3.8 -c "import nogil_ext; print('checksum32:', nogil_ext.checksum32(b'hello')); c = nogil_ext.ChunkedChecksum32(2,
5); c.submit(0, b'hello'); c.submit(1, b'world'); print('finalize:', c.finalize())"
checksum32: 792145550
finalize: 1629112880
root@8beb00c26e2f:/app# /usr/local/bin/python3.13t -c "
> import sys
>
> # Test subinterpreter compatibility
> try:
>     interp = _interpreters.create(own_gil=1, use_main_obmalloc=0, allow_fork=0, allow_exec=0, allow_threads=1, allow_daemon_threads=0, check_multi_interp_exte
nsions=1)
>     print('Created subinterpreter successfully')
>     interp.exec('import nogil_ext; print(\"nogil_ext imported in subinterpreter\")')
>     print('Subinterpreter test passed')
> except Exception as e:
>     print(f'Subinterpreter error: {e}')
> "
Subinterpreter error: name '_interpreters' is not defined
root@8beb00c26e2f:/app#
