RustPython icon indicating copy to clipboard operation
RustPython copied to clipboard

A Python Interpreter written in Rust

Results 647 RustPython issues
Sort by recently updated
recently updated
newest added

## Feature ssl.SSLError.reason ## Python Documentation https://docs.python.org/3/library/ssl.html#ssl.SSLError.reason

compat
A-stdlib

@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

A-design

## Feature sys.thread_info ## Python Documentation https://docs.python.org/3/library/sys.html#sys.thread_info

good first issue
A-stdlib

## 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.

good first issue
A-stdlib
A-design

- [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...

zca-2022