Changes by Atsuo Ishimoto :
--
nosy: +ishimoto
___
Python tracker
<http://bugs.python.org/issue12782>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Atsuo Ishimoto :
--
nosy: +ishimoto
___
Python tracker
<http://bugs.python.org/issue19977>
___
___
Python-bugs-list mailing list
Unsubscribe:
Atsuo Ishimoto added the comment:
In Python 3.3, we have contextlib.ExitStack() for multiple contexts.
So, perhaps we can close this issue?
--
___
Python tracker
<http://bugs.python.org/issue12
Changes by Atsuo Ishimoto :
Removed file: http://bugs.python.org/file26487/issue9949.patch
___
Python tracker
<http://bugs.python.org/issue9949>
___
___
Python-bugs-list m
Atsuo Ishimoto added the comment:
I have unlinked my patch since it doesn't looks correct now. Sorry for
disturbing.
--
___
Python tracker
<http://bugs.python.org/i
New submission from Atsuo Ishimoto :
In Python 3(both 3.0.1 and SVN repo), if I set
PYTHONIOENCODING=ShiftJIS:backslashreplace, print()
outputs wrong result.
>>> print("\xff")
\xff\xff
Obviously, '\xff' should be printed instead of '\xff\xff'.
Following
Atsuo Ishimoto added the comment:
My proposal to make backslashreplace a default error handler
for interactive session was rejected by Guido [1].
Does something like
PYTHONIOENCODING=ascii:backslashreplace
work for you? With PYTHONIOENCODING, you can effectively make
backslashreplace a
Atsuo Ishimoto added the comment:
I tested with py3k branch and worked fine. Thank you.
--
versions: +Python 2.6, Python 2.7
___
Python tracker
<http://bugs.python.org/issue5
Atsuo Ishimoto added the comment:
+1 for Tony's patch.
This patch reverts fix for Issue1582282 filed by tkikuchi.
I cannot understand the rationale for solution proposed in
Issue1582282. How does the fix make easier to read mails from
Entourage?
--
nosy: +ishimoto, tki
Atsuo Ishimoto added the comment:
Here's an updated patch for py3k branch.
As per Georg's comment, I added to check codepoint in the character
ranges, conversion to the surrogate pairs. I also added check to raise
exception if codepoint > 0x10.
I with to English speakers
Changes by Atsuo Ishimoto :
--
nosy: +ishimoto
___
Python tracker
<http://bugs.python.org/issue10952>
___
___
Python-bugs-list mailing list
Unsubscribe:
Atsuo Ishimoto added the comment:
Converting identifiers to NFKC is problematic to work with FULLWIDTH letters
such as 'a'(FULLWIDTH LATIN SMALL LETTER A).
We can create module named 'aaa.py', but this module could not be imported on
all platforms I know.
>>&g
New submission from Atsuo Ishimoto:
I expect following code prints '\x1c' when I resize terminal window on
Linix/Mac terminal.
import select, os, signal
rfd, wfd = os.pipe()
os.set_blocking(wfd, False)
signal.set_wakeup_fd(wfd)
select.s
Atsuo Ishimoto added the comment:
Okay, so I think this needed to be documented in signal.set_wakeup_fd().
IMO this reduces usefulness of set_wakeup_fd(). If I need to install custom
handler by my self, I can write to fd in my own custom handler.
And, installing custom handler omits
Atsuo Ishimoto added the comment:
> Benjamin Peterson added the comment:
>
> The OP probably wants something like the Linux-specific signalfd() syscall.
Yes.
Long explanation:
I have an console text editor written in
Python/curses(http://kaaedit.github.io/).
This editor didn
Atsuo Ishimoto added the comment:
Thank you for good sample. This should be written in PEP 475.
But installing new signal handler can cause different behavior.
As in my previous example, if other 3rd party libraries(ncurses in my case)
need to handle the signal, signal is consumed by Python
Atsuo Ishimoto added the comment:
Yes, I can. So, for my custom text editor, problem have solved already.
But I still think it is desirable for Python to have something like signalfd(),
because not all functions used in the signal handler of third party library
can be called from user
Atsuo Ishimoto added the comment:
Ah, I didn't know it. Thank you for clarification.
--
___
Python tracker
<http://bugs.python.org/issue25482>
___
___
Pytho
101 - 118 of 118 matches
Mail list logo