RustPython
RustPython copied to clipboard
A Python Interpreter written in Rust
## Feature ssl.SSLError.reason ## Python Documentation https://docs.python.org/3/library/ssl.html#ssl.SSLError.reason
@youknowone correctness and performance check?
to isolate control flow code from next() operation
https://github.com/RustPython/RustPython/issues/1978#issuecomment-1207262094
We had optimization for builtin iteration before #3968 Trying similar optimization will be worth to try. The interface can also be enhanced using iterator like #3940
## Feature sys.thread_info ## Python Documentation https://docs.python.org/3/library/sys.html#sys.thread_info
## Feature - base: #3736 related source code: https://github.com/python/cpython/blob/v3.10.6/Python/_warnings.c#L940-L956 not all features needed to be implemented at once. step by step progress will be easier.
- [x] Fix `__build_class__` check `__class__` cell - [ ] Fix `type.__new__` set classcell When a class object is created with metaclass, the following operation is performed. [https://docs.python.org/3/reference/datamodel.html?highlight=__classcell__#:~:text=CPython implementation detail%3A...
fix #3927 blocked by #4001