DimitrisJim

Results 131 comments of DimitrisJim

yeah, sorry if I didn't make myself clear enough. The idea here is to remove any decorators (and their preceding comment) for the tests that now pass. If you revert...

Thanks! Definitely seems like a descriptor bug though I haven't investigated thoroughly. I'll try and find some time to reduce it to a simpler example to make it easier to...

Ah, still not sure, sorry. There's some subtlety here since it only occurs with nested functions (maybe with anything nested that can take a docstring?). You're of course welcome to...

What Noa said, but in bytecode form, for a given function: ```python cmp = """ def foo(): ''' doc ''' pass """ ``` What RustPython generates: ```python dis(cmp) 4 0...

Unpacking in indexes was introduced with PEP 646 (specifically, see [here](https://peps.python.org/pep-0646/#change-1-star-expressions-in-indexes)). I guess it isn't documented in that section because it isn't new syntax per se, more of a change...

let's break this up in two issues? they touch on different subjects and the unpacking might be a good issue for someone to tackle. (plus, the title doesn't make it...

> but with the possibility to access other variable in each functions from my game engine I'm not sure what you mean by this, could you give a rough code...

I really am swamped for time, unfortunately. How do you access that object, just an argument passed to the functions? There's some examples for calling between RustPython/Python in[ the examples...

A typical workflow relating to building and contributing to RustPython or running Python code/files?

I'll look into trying to give more instructions both in `README.md` and in `DEVELOPMENT.md`. > for next trying to install pip I get How did you get `get-pip.py`?