[issue24035] When Caps Locked, Shift + alpha-character still displayed as uppercase

2015-04-25 Thread James

James added the comment:

When I start the interpreter with the -S switch, the problem goes away. 
Thanks for looking into it, and I apologize for the false alarm!

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24035
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24035] When Caps Locked, Shift + alpha-character still displayed as uppercase

2015-04-25 Thread James

Changes by James james.triv...@gmail.com:


--
resolution:  - not a bug
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24035
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24035] When Caps Locked, Shift + alpha-character still displayed as uppercase

2015-04-25 Thread eryksun

eryksun added the comment:

 It looks like this is a bug in pyreadlines as suggested by 
 eryksun, but for a different reason.

As I said before, it reads keyboard input events at a lower level via 
ReadConsoleInputW, instead of calling ReadConsoleW to read the input buffer as 
a text stream. To elaborate, this means it has to be aware of the keyboard 
state, per the [KEY_EVENT_RECORD][1] dwControlKeyState. This gets passed to 
[make_KeyPress][2] as `state`, which in turn ignores the CAPSLOCK_ON flag.

[1]: https://msdn.microsoft.com/en-us/library/ms684166
[2]: 
https://github.com/pyreadline/pyreadline/blob/master/pyreadline/keysyms/keysyms.py#L116

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24035
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24035] When Caps Locked, Shift + alpha-character still displayed as uppercase

2015-04-24 Thread James Edwards

James Edwards added the comment:

It looks like this is a bug in pyreadlines as suggested by eryksun, but for a 
different reason.

Even though the Caps Lock + Shift combination is recognized correctly (as lower 
case), the logic in the pyreadlines module forces it to upper case.

See lines 44-45 and 72-75 in [1].

You should be able to verify this by launching with the -S option, disabling 
the auto import of the site module.  (You'll need to import sys; sys.exit(), or 
Ctrl+Break to exit the interpreter -- exit() won't be defined.)

Given that pyreadlines looks to be somewhat of a mess and since you don't 
actually need pyreadlines to run ipython[2], you might consider uninstalling it 
(Alternatively, removing the or shift part of the referenced conditions will 
fix your specific issue).

If you're only looking for windows terminal coloring, colorama[3] is being used 
by the pip maintainers with apparent success.

In any case, it doesn't look to be an appropriate bug for this tracker -- maybe 
the pyreadlines github?


[1] 
https://github.com/pyreadline/pyreadline/blob/master/pyreadline/keysyms/common.py
[2] http://mail.scipy.org/pipermail/ipython-dev/2013-November/012623.html
[3] https://pypi.python.org/pypi/colorama

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24035
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24035] When Caps Locked, Shift + alpha-character still displayed as uppercase

2015-04-24 Thread James Edwards

James Edwards added the comment:

If you start the interactive interpreter with the -S switch, e.g.

python.exe -S

Do you still see this behavior?

--
nosy: +jedwards

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24035
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24035] When Caps Locked, Shift + alpha-character still displayed as uppercase

2015-04-23 Thread eryksun

eryksun added the comment:

Are you using pyreadline? It's commonly used with IPython. Pyreadline hooks 
PyOS_ReadlineFunctionPointer to provide readline functionality in the REPL. 
Since it accesses the console input via ReadConsoleInputW events instead of 
using ReadConsoleW, it wouldn't surprise me if it's mishandling the keyboard 
state.

--
nosy: +eryksun

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24035
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24035] When Caps Locked, Shift + alpha-character still displayed as uppercase

2015-04-23 Thread SilentGhost

Changes by SilentGhost ghost@gmail.com:


--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24035
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24035] When Caps Locked, Shift + alpha-character still displayed as uppercase

2015-04-23 Thread Tim Golden

Tim Golden added the comment:

Perhaps unsurprisingly, I can't reproduce this on Python 2.7.9 32-bit running 
on Win7 Home Premium. 

Python doesn't handle CapsLock/Shift interaction directly: it just gets what it 
gets from the underlying OS or framework. So I'm at a loss to know what might 
cause the effect you're seeing in so particular a way as to affect one version 
of Python in one i/o framework but not another.

Can you reproduce the situation on a different machine?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24035
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24035] When Caps Locked, Shift + alpha-character still displayed as uppercase

2015-04-22 Thread James

New submission from James:

Referring to Python 2.7 running on Windows (7/8): 

At the interactive interpreter, if either 1) Caps are Locked OR 2) Shift is 
held while an alpha-character is selected, the character is output and 
displayed as uppercase, as one would expect. However, in Python 2.7, when Caps 
are Locked AND Shift is held while an alpha-character is selected, the output 
is still uppercase, when it should be lowercase.

This behavior seems to be limited to Python 2(.7), and only when Python is run 
interactively using the Windows console. When Python 2.7 is started through 
Cygwin using mintty on Windows 7/8, the behavior is not reproducible. The same 
goes for IDLE, as well as when running python interactively on Ubuntu. The 
behavior is reproducible using IPython when run in the standard Windows 
console, but is not reproducible when Python is run using the IPython QtConsole.

To summarize:

-   ---
AFFECTED|  |NOT AFFECTED |
--  ---
python 2 via cmd (Windows 7/8) python 3 via cmd(Windows 7/8)
ipython via cmd  (Windows 7/8) IDLE python 2  3   (Windows 7/8) 
   python 2 via mintty (Windows 7/8)
   python 2 via bash  (Ubuntu 14.04)
   ipython qtconsole   (Windows 7/8)

--
components: IO
messages: 241845
nosy: principia1687
priority: normal
severity: normal
status: open
title: When Caps Locked, Shift + alpha-character still displayed as uppercase
type: behavior
versions: Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24035
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com