Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #95156 > unrolled thread

Re: Who uses IDLE -- please answer if you ever do, know, or teach

Started byAkira Li <4kir4.1i@gmail.com>
First post2015-08-08 06:45 +0300
Last post2015-08-08 06:45 +0300
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Who uses IDLE -- please answer if you ever do, know, or teach Akira Li <4kir4.1i@gmail.com> - 2015-08-08 06:45 +0300

#95156 — Re: Who uses IDLE -- please answer if you ever do, know, or teach

FromAkira Li <4kir4.1i@gmail.com>
Date2015-08-08 06:45 +0300
SubjectRe: Who uses IDLE -- please answer if you ever do, know, or teach
Message-ID<mailman.1326.1439005608.3674.python-list@python.org>
Terry Reedy <tjreedy@udel.edu> writes:

> There have been discussions, such as today on Idle-sig , about who
> uses Idle and who we should design it for.  If you use Idle in any
> way, or know of or teach classes using Idle, please answer as many of
> the questions below as you are willing, and as are appropriate
>

Running Python scripts in Windows console that may produce Unicode
output is a worth-mentioning use-case [1] (as you might know) i.e., if
you run:

  T:\> py print_unicode.py

and get the error:

  UnicodeEncodeError: 'charmap' codec can't encode character '...'

then a workaround that works out of the box is to run:

  T:\> py -m idlelib -r print_unicode.py

that can display Unicode (BMP) output in IDLE.

[1] http://stackoverflow.com/questions/28521944/python3-print-unicode-to-windows-xp-console-encode-cp437

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web