Deno-Python – A Debugging Story
sigmasd.github.io
Deno-Python – A Debugging Story
1–5 of 5 posts
Re: Deno-Python – A Debugging Story
#2> Yeah, the last pointer is not correctly aligned. Pointers should be 8 byte aligned (regardless of architecture), but it's at byte index 20: 20/8 does not an integer make.
Regardless of architecture among the ones supported by Deno-Python, I'm guessing.
Re: Deno-Python – A Debugging Story
#3[flagged]
Re: Deno-Python – A Debugging Story
#4[flagged]
Re: Deno-Python – A Debugging Story
#5> Yeah, the last pointer is not correctly aligned. Pointers should be 8 byte aligned (regardless of architecture), but it's at byte index 20: 20/8 does not an integer make. Regardless of architecture among the ones supported by Deno-Python, I'm guessing.
Yeah, Deno only runs on 64-bit architectures.