Chainfire
Chainfire
### Description This was already raised in #194 , however I'm asking for it again. With later mypyc versions (at least on Python 3.12) the problem with msgpack.Struct's has changed...
Can support for [msgspec.Struct](https://jcristharif.com/msgspec/structs.html)'s be investigated? When I try to use them I get an error about metaclasses with Python3.12. I understand metaclasses are basically unsupported by mypyc. However, msgspec.Struct's...
Took me over a day to isolate this one from our production base. Code runs for days in interpreted mode at 200MB, goes up to 4GB in half an hour...
```python #!/usr/bin/env python3 from typing import List, Tuple import asyncio async def return_true() -> bool: return True async def return_str() -> str: return "Oh hi!" async def main() -> None:...