Post History
Python, 123 bytes I'm just happy I got python to segfault :) there must be a better way to golf this. a=lambda:0;e=tuple() b=type(a.__code__)(0,0,0,0,0,0,(lambda x:x).__code__.co_code,e,e,e,'','...
#1: Initial revision
# [Python](https://www.python.org), 123 bytes
I'm just happy I got python to segfault :) there must be a better way to golf this.
```python
a=lambda:0;e=tuple()
b=type(a.__code__)(0,0,0,0,0,0,(lambda x:x).__code__.co_code,e,e,e,'','','',0,b'',b'')
type(a)(b,{})()
```
[Attempt This Online!](https://ato.pxeger.com/run?1=m72soLIkIz9vwYKlpSVpuhY3qxNtcxJzk1ISrQysU21LSgtyUjU0uZJsSyoLUjUS9eLjk_NTUuPjNTUMdBBQA6JFocKqQhOuRC85H8zSgUB1dSgy0EkCkkCsyQUxVFMjSae6VlNDE-IEqEtgLgIA)
