[issue8533] regrtest: use backslashreplace error handler for stdout

2011-05-30 Thread STINNER Victor
STINNER Victor added the comment: The original issue (use backslashreplace for stdout in regrtest) is now fixed, and so I closed it. @ocean-city: Can you please open a new issue for unittest? (for py3k_also_no_unicode_error_on_direct_test_run.patch) -- resolution: -> fixed status: o

[issue9738] Document the encoding of functions bytes arguments of the C API

2011-05-30 Thread STINNER Victor
STINNER Victor added the comment: > Here is an interesting case for your collection: PyDict_GetItemString. It's easier to guess the encoding of such function: Python 3 always use UTF-8, but yes, the encoding should be documented. I documented many functions, directly in the header files, and

[issue10616] Change PyObject_AsCharBuffer() error message

2011-05-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7ed75bb4f37c by Victor Stinner in branch 'default': Close #10616: mention bytes and bytearray in PyObject_AsCharBuffer() error http://hg.python.org/cpython/rev/7ed75bb4f37c -- nosy: +python-dev resolution: -> fixed stage: -> committed/rej

[issue12028] threading._get_ident(): remove it in the doc or make it public

2011-05-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6387aa6b496d by Victor Stinner in branch 'default': Issue #12028: fix NEWS entry http://hg.python.org/cpython/rev/6387aa6b496d -- ___ Python tracker _

[issue4833] Explicit directories for zipfiles

2011-05-30 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue12016] Wrong behavior for '\xff\n'.decode('gb2312', 'ignore')

2011-05-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3b1b06570cf9 by Victor Stinner in branch '2.7': Issue #12016: my_fgets() now always clears errors before calling fgets(). Fix http://hg.python.org/cpython/rev/3b1b06570cf9 New changeset de07f90ef45c by Victor Stinner in branch '3.2': Issue #12016:

[issue12016] Wrong behavior for '\xff\n'.decode('gb2312', 'ignore')

2011-05-30 Thread STINNER Victor
Changes by STINNER Victor : -- Removed message: http://bugs.python.org/msg137334 ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue1195] Problems on Linux with Ctrl-D and Ctrl-C during raw_input

2011-05-30 Thread STINNER Victor
STINNER Victor added the comment: Ooops, I specified the wrong issue number in my commits :-/ New changeset 3b1b06570cf9 by Victor Stinner in branch '2.7': Issue #12016: my_fgets() now always clears errors before calling fgets(). Fix http://hg.python.org/cpython/rev/3b1b06570cf9 New changeset

[issue1195] Problems on Linux with Ctrl-D and Ctrl-C during raw_input

2011-05-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset b40dac6390a9 by Victor Stinner in branch '2.7': Issue #1195: fix the issue number of the NEWS entry http://hg.python.org/cpython/rev/b40dac6390a9 New changeset d780ca579e6f by Victor Stinner in branch '3.2': Issue #1195: fix the issue number of the

[issue1195] Problems on Linux with Ctrl-D and Ctrl-C during raw_input

2011-05-30 Thread STINNER Victor
STINNER Victor added the comment: > The patch still does not handle the case where the eof indicator > is already set when calling raw_input. My original patch does. I commited your original patch but I kept mine because it doesn't hurt to clear the error on EOF at exit. Reopen the issue if it

[issue12057] HZ codec has no test

2011-05-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6c6923a406df by Victor Stinner in branch '2.7': Issue #12057: Add tests for ISO 2022 codecs http://hg.python.org/cpython/rev/6c6923a406df New changeset 2a313ceaf17c by Victor Stinner in branch '3.2': Issue #12057: Add tests for ISO 2022 codecs http

[issue12057] HZ codec has no test

2011-05-30 Thread STINNER Victor
STINNER Victor added the comment: We have know tests for some ISO 2022 codecs and the HZ codec, it's much better! -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue12016] Wrong behavior for '\xff\n'.decode('gb2312', 'ignore')

2011-05-30 Thread STINNER Victor
STINNER Victor added the comment: - I added tests for the HZ codec and some ISO 2022 codecs: #12057 - I fixed IncrementalEncoder.encode() (of multibytecodec ): #12100 - I fixed IncrementalEncoder.reset() (of multibytecodec): #12171 I can now work confidently on this issue. I will try to patch

[issue11416] netrc module does not handle multiple entries for a single host

2011-05-30 Thread Jean-Marc Saffroy
Jean-Marc Saffroy added the comment: Additional patch for docstrings and documentation. Applies on top of previous patch. -- Added file: http://bugs.python.org/file22204/netrc-doc.patch ___ Python tracker ___

[issue12219] tkinter.filedialog.askopenfilename XT dialog on Windows 7

2011-05-30 Thread Ned Deily
Ned Deily added the comment: If the problem is with an ActiveState distribution of Python 3.2, you should probably be asking this on the ActiveState forums. -- nosy: +brian.curtin, loewis, ned.deily ___ Python tracker

[issue12220] minidom xmlns not handling spaces in xmlns attribute value field

2011-05-30 Thread Ned Deily
Changes by Ned Deily : -- stage: -> needs patch type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue11612] xml.dom.minidom fail to parse SVG file.

2011-05-30 Thread Ned Deily
Ned Deily added the comment: Issue12220 also addresses this problem in somewhat more detail. Consolidating this issue with that one. -- resolution: -> duplicate status: open -> closed superseder: -> minidom xmlns not handling spaces in xmlns attribute value field __

[issue11271] concurrent.futures.ProcessPoolExecutor.map() slower than multiprocessing.Pool.map() for fast function argument

2011-05-30 Thread Ned Deily
Changes by Ned Deily : -- nosy: +bquinlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue12200] bdist_wininst install_script not run on uninstall

2011-05-30 Thread Mark Hammond
Changes by Mark Hammond : -- assignee: tarek -> mhammond keywords: +patch stage: -> patch review versions: +Python 2.7, Python 3.2, Python 3.3, Python 3.4 Added file: http://bugs.python.org/file22205/issue12200.patch ___ Python tracker

[issue6560] socket sendmsg(), recvmsg() methods

2011-05-30 Thread Brian May
Brian May added the comment: Have tested my code with this patch, the recvmsg(...) call seems to work fine. Also had a half-hearted attempt at porting to Python 2.7, but didn't get past compiling, the code requires BEGIN_SELECT_LOOP and END_SELECT_LOOP macros that aren't defined in Python 2.7

[issue12219] tkinter.filedialog.askopenfilename XT dialog on Windows 7

2011-05-30 Thread Herm Fischer
Herm Fischer added the comment: Now also posted to http://bugs.activestate.com/show_bug.cgi?id=90234 -- ___ Python tracker ___ ___ Py

<    1   2