DimitrisJim

Results 41 issues of DimitrisJim

It would be a nice addition to the devguide if the benchmarks section of *runtests.rst* contained the minimal commands needed to run `pyperformance` for comparing the potential performance diffs introduced...

enhancement
guide-new content
topic-test

Currently, using a parameter with the same name as a positional/default/keyword is allowed: ```python >>>>> def f(*a, **a): pass >>>>> def f(a, *, a): pass >>>>> def f(a, a=0, *,...

compat

when it shouldn't. I was able to repro this in cases where a nested function is defined, i.e: ```python def foo(): def inner(): pass ``` In RustPython: ```python >>>>> foo.__code__.co_names...

C-bug

[Introduced in 3.11](https://docs.python.org/3/using/cmdline.html#generic-options) for describing the environment variables, the implementation options and the showing all information at the same time.

Opening this separately from #1838 since it also seems like a good first issue. Currently, code objects are missing the `co_stacksize` attribute: ```python def foo(a, b): pass ``` In RustPython:...

good first issue
A-stdlib

## Summary Some benchmarks result in _excessive_ memory consumption, my system with approximately 15gb available for evaluating them cannot handle it. Specifically, mircro benchmarks that result in wild memory usage...

A-vm

Issue caught after an update to `test_builtins` in #4765. Creating a new type and supplying as a name a value that contains a surrogate (in this case `\udcdc` is used)...

C-bug
C-compat

Required for https://github.com/cosmos/ibc-go/pull/5968# Protos contain only primitive types so generation was straigh-forward. Would be a good idea to add a step to the go workflow that enters the mod and...

go
protobuf

Basically, this comment https://github.com/cosmos/ibc-go/pull/6103#discussion_r1566519731. Noticed that we have a couple of ways of accessing client store/state: - Grab store with `storeProvider` and use `types.GetClientState` to grab client state. - Use...

needs discussion
02-client

## Description Opening as draft, parent issue requires discussion. Upsides: - simpler router - slightly slimmer lcm interface - no dangling nils after init Downsides: - more requirements by light...