Burak Yildiz

Results 6 comments of Burak Yildiz

The answer is too late but new comer can use. If you rely on the state on README (https://github.com/pyenv/pyenv-virtualenv/blob/master/README.md#anaconda-and-miniconda) that says you can use `conda` itself to create virtual envs,...

`/opt/homebrew/bin/bash ./download.sh` didn't worked for me because homebrew doesn't use `/opt/homebrew` directory anymore. You can use `brew --prefix bash` to find the location once you install the bash with `brew...

I had the following error with Python 3.11 and this change solved the problem: ``` curve25519module.c:161:9: error: incompatible pointer to integer conversion initializing 'Py_ssize_t' (aka 'long') with an expression of...

I've just submitted a pull request that solves this issue. The solution I come up with is that after an exception occur, it calls the on_error callback before exiting the...

I have the similar issue with usecols as the type of list of a string. ``` import pandas as pd df = pd.read_csv("test.csv", usecols=["a", "b"]) # this line causes type...

@Dr-Irv Thank you for your reply. When I looked at the [Pyright configuration docs](https://github.com/microsoft/pyright/blob/main/docs/configuration.md), it is stated that for `reportArgumentType`, all three modes (basic, standard, and strict) have the same...