curses fails when calling addch on the bottom right corner

Giovanni

I am starting to learn curses in Python. I am using Python 3.5 on Mac OS X. When I try to write in the bottom-right corner, the program crashes with the following error:

$ python ex_curses.py
[...]
  File "ex_curses.py", line 19, in do_curses
    screen.addch(mlines, mcols, 'c')
  _curses.error: add_wch() returned ERR

The example program is:

import curses

def do_curses(screen):
    curses.noecho()
    curses.curs_set(0)
    screen.keypad(1)

    (line, col) = 12, 0
    screen.addstr(line, col, "Hello world!")
    line += 1
    screen.addstr(line, col, "Hello world!", curses.A_REVERSE)

    screen.addch(0, 0, "c")

    (mlines, mcols) = screen.getmaxyx()
    mlines -= 1
    mcols -= 1
    screen.addch(mlines, mcols, 'c')

    while True:
        event = screen.getch()
        if event == ord("q"):
            break
    curses.endwin()

if __name__ == "__main__":
    curses.wrapper(do_curses)

I have a feeling that I'm missing something obvious, but I don't know what.

Thomas Dickey

That is expected behavior (a quirk) because addch attempts to wrap to the next line after adding a character. There is a comment in lib_addch.c dealing with this:

/*
 * The _WRAPPED flag is useful only for telling an application that we've just
 * wrapped the cursor.  We don't do anything with this flag except set it when
 * wrapping, and clear it whenever we move the cursor.  If we try to wrap at
 * the lower-right corner of a window, we cannot move the cursor (since that
 * wouldn't be legal).  So we return an error (which is what SVr4 does).
 * Unlike SVr4, we can successfully add a character to the lower-right corner
 * (Solaris 2.6 does this also, however).
 */

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

stick a image to the bottom right corner

From Dev

Move form to bottom right corner

From Dev

Extjs button on the bottom right corner

From Dev

Put TextView on right bottom corner

From Dev

How to fill to lower-right corner in python-curses

From Dev

bottom-right corner of border is missing?

From Dev

ScrollViewer WPF bottom right corner color

From Dev

How to position to bottom right corner without overlapping

From Dev

Jquery animate from right bottom corner to

From Dev

How to add an icon to a button at the bottom right corner

From Dev

The postioning at the bottom right corner using jQuery

From Dev

Border Layout Positioning on bottom right (but not top) corner

From Dev

Outputting a string in the bottom right corner of the terminal

From Dev

bottom-right corner of border is missing?

From Dev

The postioning at the bottom right corner using jQuery

From Dev

Right bottom corner textbox in desktop; what's it for?

From Dev

Move buttons to the bottom right corner of the header

From Dev

UITableviewCell Bottom Left & Right corner radius

From Dev

When pressing on googleMap Marker on Android, 2 buttons appear in the bottom right corner, can I disable them?

From Dev

How to prevent Windows from showing desktop when the pointer hover over the right bottom corner?

From Dev

Is it possible to trigger Supert+W when moving the mouse cursor to the bottom right corner?

From Dev

half borders at top right corner and bottom left corner with css

From Dev

Curses Error When Text Reaches Right

From Dev

How to display legend in bottom right corner instead of top right?

From Dev

How would i make imageView rolling in from bottom left corner to the bottom right corner?

From Dev

Moving inner div to the bottom-right corner of the outer parent div

From Dev

Quotes in top-left and bottom-right corner of div

From Dev

Moving an div from the top left corner to bottom right using css

From Dev

Position fixed element in bottom right corner of page with CSS3

Related Related

  1. 1

    stick a image to the bottom right corner

  2. 2

    Move form to bottom right corner

  3. 3

    Extjs button on the bottom right corner

  4. 4

    Put TextView on right bottom corner

  5. 5

    How to fill to lower-right corner in python-curses

  6. 6

    bottom-right corner of border is missing?

  7. 7

    ScrollViewer WPF bottom right corner color

  8. 8

    How to position to bottom right corner without overlapping

  9. 9

    Jquery animate from right bottom corner to

  10. 10

    How to add an icon to a button at the bottom right corner

  11. 11

    The postioning at the bottom right corner using jQuery

  12. 12

    Border Layout Positioning on bottom right (but not top) corner

  13. 13

    Outputting a string in the bottom right corner of the terminal

  14. 14

    bottom-right corner of border is missing?

  15. 15

    The postioning at the bottom right corner using jQuery

  16. 16

    Right bottom corner textbox in desktop; what's it for?

  17. 17

    Move buttons to the bottom right corner of the header

  18. 18

    UITableviewCell Bottom Left & Right corner radius

  19. 19

    When pressing on googleMap Marker on Android, 2 buttons appear in the bottom right corner, can I disable them?

  20. 20

    How to prevent Windows from showing desktop when the pointer hover over the right bottom corner?

  21. 21

    Is it possible to trigger Supert+W when moving the mouse cursor to the bottom right corner?

  22. 22

    half borders at top right corner and bottom left corner with css

  23. 23

    Curses Error When Text Reaches Right

  24. 24

    How to display legend in bottom right corner instead of top right?

  25. 25

    How would i make imageView rolling in from bottom left corner to the bottom right corner?

  26. 26

    Moving inner div to the bottom-right corner of the outer parent div

  27. 27

    Quotes in top-left and bottom-right corner of div

  28. 28

    Moving an div from the top left corner to bottom right using css

  29. 29

    Position fixed element in bottom right corner of page with CSS3

HotTag

Archive