python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
running pypy3.5 with AWS Lambda custom runtime
As AWS Lambda doesn't provide run time from pypy3, I am trying to use customer runtime from below link..
https://github.com/iopipe/lambda-runtime-pypy3.5?msclkid=0cdabf06b4c611eca1f350bd8a8e522e
But I...
SSA
Votes: 0
Answers: 1
cant run with pypy3 script which uses pyshark
here i tryied to run script with pypy3 c.py but above error occured ,
i installed pypy3 -m pip install pyshark but ...
pypy3 c.py
ModuleNotFoundError: No module named 'lxml.objectify'
import pysha...
Bumin Qagan
Votes: 0
Answers: 2
PyPy C API compatibility issues
I'm trying to port an existing extension for cPython to PyPy. It is written using C API. I've got some question which are connected with the compatibility:
The extension uses opcodes from cPython's o...
Dmitrii
Votes: 0
Answers: 1
Why PyPy fails when I try to define type annotated class member (e.g. list or dict)?
I have following simple code:
from dataclasses import dataclass, field
@dataclass
class Test:
names: list[str] = field(default_factory=list)
if __name__ == '__main__':
Test(['a', 'b', 'c'])
...
Programmierus
Votes: 0
Answers: 1