windows-curses icon indicating copy to clipboard operation
windows-curses copied to clipboard

Windows Curses Python module

Results 26 windows-curses issues
Sort by recently updated
recently updated
newest added

I have tried to use the curses panel functions on a Win10-64 system from python 3.8.3 (64-bit version) and even a very simple program generates no output at all. No...

question

Greetings. I am using VSCode as my IDE, along with Python 3.8. I wanted to install curses, found a rabbit hole, and fell in. I've installed windows-curses using pip, and...

question

Trying to call `curses.init_pair(0, curses.COLOR_RED, curses.COLOR_BLACK)` raises an exception. You can reproduce it by changing pair from 1 to 0 in [`example/rain.py`](https://github.com/zephyrproject-rtos/windows-curses/blob/master/examples/rain.py#L33): ```diff - curses.init_pair(1, curses.COLOR_BLUE, bg) + curses.init_pair(0, curses.COLOR_BLUE,...

bug

When you hit `ctrl+h` or `backspace` key, `ord(stdscr.getch()` both produces the same result `8`. On Linux, `backspace` returns `143` instead. Is there any way to differentiate these then? Python 3.7.6,...

question

Hello, I found CTRL-C doesn't raise KeyboardInterrupt in windows-curses. ``` import time import curses def main(stdscr): begin_x, begin_y = 20, 7 width, height = 40, 5 win = curses.newwin(height, width,...

tried ```python stdscr.addstr(0, 0, "가나다") ``` result ![word 가나다 overlapping each other](https://i.imgur.com/RjHvnyG.png) ...And I tested with other full-width character, like full-width English, and same thing happened.

known issue

Python 3.11 is set to release in 2-3 weeks, but wheels (or sdists) are unavailable for windows-curses. Here's the docs on porting to 3.11 https://docs.python.org/3.11/whatsnew/3.11.html#id6 The release date is on...

If there's nobody to maintain this package, then so be it, but can somebody please delete the dysfunctional Python 3.12 windows-curses wheel from PyPI, and remove the info on its...

windows-curses 2.3.2 Python 3.11.0 keypad(True) (otherwise getch() does not detect that key is pressed) When pressing ì or ^ (key between ' or ? key and BS key) getch() returns...

bug