Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #95156 > unrolled thread
| Started by | Akira Li <4kir4.1i@gmail.com> |
|---|---|
| First post | 2015-08-08 06:45 +0300 |
| Last post | 2015-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.
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
| From | Akira Li <4kir4.1i@gmail.com> |
|---|---|
| Date | 2015-08-08 06:45 +0300 |
| Subject | Re: 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
Back to top | Article view | comp.lang.python
csiph-web