Avram Lubkin

Results 40 comments of Avram Lubkin

Are you using using [cbreak](https://blessed.readthedocs.io/en/latest/api/terminal.html#blessed.terminal.Terminal.cbreak) or [raw](https://blessed.readthedocs.io/en/latest/api/terminal.html#blessed.terminal.Terminal.raw) mode? You'll need raw mode in order to capture some control sequences.

What's an example of a key you're seeing in keymatrix that you aren't seeing in the above code?

I think we'd need to see what you implemented in order to assist. My guess is it's something in your context manager as I can do this with the current...

I'm torn on if jinxed should be relied on completely. You're right, most other libraries just use hardcoded xterm values and no one seems to notice, though I expect there...

Download counts for the last 45 days | python_version | download_count | | -------------- | -------------- | | 3.7 | 815,720 | | 3.8 | 382,366 | | 3.6 |...

Thanks, @nedbat! It looks like a bunch of files get created in the `.coverage-{TOX_ENV_NAME}.{HOSTNAME}.{PID}.{RANDOM}` format, but they get consolidated into the `.coverage-{TOX_ENV_NAME}` files. So I guess the problem was these...

Ah, I see now. The data_file name is used as a globing pattern for combine and erase. I'm sorry, it seems very obvious now. I'm guessing you're right and we...

Same issue using [python:2.7.18-buster](https://hub.docker.com/layers/library/python/2.7.18-buster/images/sha256-522d1b945bb334e497169061fca01dc560ee07458d99f1104994d316430c7ba4?context=explore#!) ``` ==> Running command '/__w/_actions/codecov/codecov-action/v4/dist/codecov -v create-commit' /__w/_actions/codecov/codecov-action/v4/dist/codecov -v create-commit --git-service github -Z [715] Error loading Python lib '/tmp/_MEIM7NZs8/libpython3.11.so.1.0': dlopen: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found (required...

It seems codecov-action pulls down a binary version of codecov-cli, I'm guessing packaged with PyInstaller and Python 3.11 compiled with glibc 2.29. ldd doesn't show all the dependencies, but they...

`Regex`, `Use`, and `Schema` all allow `error` to be specified. If you want to specify a custom error for something simple, just wrap it in `Schema`. ```Schema(bool, "This isn't a...