This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Nicholas.Cole
Recipients Nicholas.Cole, cben, gpolo, inigoserna, jcea, phep, pitrou, python-dev, r.david.murray, schodet, vstinner, zeha
Date 2012-08-31.20:20:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346444428.52.0.388777546981.issue14223@psf.upfronthosting.co.za>
In-reply-to
Content
import curses

def test_screen(screen):
    screen.addch(5,5, curses.ACS_HLINE)
    screen.addch(5,6, curses.ACS_HLINE)
    screen.refresh()
    curses.napms(2000)

curses.wrapper(test_screen)
History
Date User Action Args
2012-08-31 20:20:28Nicholas.Colesetrecipients: + Nicholas.Cole, jcea, cben, pitrou, vstinner, gpolo, r.david.murray, inigoserna, phep, zeha, schodet, python-dev
2012-08-31 20:20:28Nicholas.Colesetmessageid: <1346444428.52.0.388777546981.issue14223@psf.upfronthosting.co.za>
2012-08-31 20:20:27Nicholas.Colelinkissue14223 messages
2012-08-31 20:20:27Nicholas.Colecreate