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 fugounashi
Recipients fugounashi, vstinner
Date 2009-08-27.11:53:53
SpamBayes Score 8.666434e-05
Marked as misclassified No
Message-id <1251374035.98.0.926030746912.issue6733@psf.upfronthosting.co.za>
In-reply-to
Content
thanks for looking into it

this should do it:

#! /usr/bin/python
import locale
locale.setlocale(locale.LC_ALL, '')
code = locale.getpreferredencoding()
import curses
def main(stdscr):
    stdscr.erase()
    stdscr.move(0, 0)
    for i in range(0,stdscr.getmaxyx()[1] - 1):
        stdscr.addstr(".");
    stdscr.addstr(u"\u3007\u3007".encode(code));
    stdscr.refresh()
curses.wrapper(main)
History
Date User Action Args
2009-08-27 11:53:56fugounashisetrecipients: + fugounashi, vstinner
2009-08-27 11:53:55fugounashisetmessageid: <1251374035.98.0.926030746912.issue6733@psf.upfronthosting.co.za>
2009-08-27 11:53:54fugounashilinkissue6733 messages
2009-08-27 11:53:54fugounashicreate