[issue20910] Make sleep configurable in tests

2014-03-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset d1c80a5b42ad by Victor Stinner in branch 'default': Issue #20910: Make tests more reliable, less dependent on time http://hg.python.org/cpython/rev/d1c80a5b42ad -- nosy: +python-dev ___ Python tracker

[issue8813] SSLContext doesn't support loading a CRL

2014-03-17 Thread STINNER Victor
STINNER Victor added the comment: What is the status of this issue? Is it fixed or not? The What's New in Python 3.4 document says that Python 3.4 can load CRL. -- ___ Python tracker ___

[issue20671] test_create_at_shutdown_with_encoding() of test_io hangs on "SPARC Solaris 10 OpenCSW 3.x"

2014-03-17 Thread STINNER Victor
STINNER Victor added the comment: The configuration of the buildbot has been changed. Tests are now running with -j16 (16 processes) and the test suite takes 1 hour 30 instead of 10 hours. This issue has been fixed with the new configuration. -- resolution: -> fixed status: open -> cl

[issue19977] Use "surrogateescape" error handler for sys.stdin and sys.stdout on UNIX for the C locale

2014-03-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset bc06f67234d0 by Victor Stinner in branch 'default': Issue #19977: When the ``LC_TYPE`` locale is the POSIX locale (``C`` locale), http://hg.python.org/cpython/rev/bc06f67234d0 -- nosy: +python-dev ___ Pyt

[issue20574] Implement incremental decoder for cp65001

2014-03-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset f6794a0fb2b3 by Victor Stinner in branch 'default': Issue #20574: Remove duplicated test failing on Windows XP http://hg.python.org/cpython/rev/f6794a0fb2b3 -- ___ Python tracker

[issue16827] Remove the relatively advanced content from section 2 in tutorial

2014-03-17 Thread Jamayla Wiley
Jamayla Wiley added the comment: I moved the advanced content (all but 2.1, 2.2.3) from the 'Interpreter' tutorial to the 'Interactive' appendix mentioned above. -- keywords: +patch nosy: +jdwiley Added file: http://bugs.python.org/file34472/interpreter.patch __

[issue19977] Use "surrogateescape" error handler for sys.stdin and sys.stdout on UNIX for the C locale

2014-03-17 Thread STINNER Victor
STINNER Victor added the comment: Test failing on "x86 OpenIndiana 3.x" buildbot: http://buildbot.python.org/all/builders/x86%20OpenIndiana%203.x/builds/7939/steps/test/logs/stdio == FAIL: test_forced_io_encoding (test.test_cap

[issue20574] Implement incremental decoder for cp65001

2014-03-17 Thread STINNER Victor
STINNER Victor added the comment: I removed the test because there were two classes tesing the same codec and that tests were failing. I need to refactor tests, and so I reopen the issue. http://buildbot.python.org/all/builders/x86%20XP-4%203.x/builds/10291/steps/test/logs/stdio ==

[issue19977] Use "surrogateescape" error handler for sys.stdin and sys.stdout on UNIX for the C locale

2014-03-17 Thread STINNER Victor
STINNER Victor added the comment: New behaviour: $ mkdir z $ touch z/abcé $ LC_CTYPE=C ./python -c 'import os; print(os.listdir("z")[0])' abcé Old behaviour, before the change (test with Python 3.3): $ LC_CTYPE=C python3 -c 'import os; print(os.listdir("z")[0])' Traceback (most recent call las

[issue16827] Remove the relatively advanced content from section 2 in tutorial

2014-03-17 Thread Ya-Ting Huang
Ya-Ting Huang added the comment: Hi I just uploaded my patch. I add one file appendix.rst, and move every part except 2.1 and 2.2.3 to appendix. Also I add one line under the interactive section to advice readers see more information in appendix. Please let me know if I should reorganize anyth

[issue20265] Bring Windows docs up to date

2014-03-17 Thread Kathleen Weaver
Kathleen Weaver added the comment: I think I've incorporated everything wanted, and simplified things. Instead of going through how to change environment variables, I've pointed to another source. I've added the VS tools. -- Added file: http://bugs.python.org/file34474/kweaver.patch

[issue20265] Bring Windows docs up to date

2014-03-17 Thread Kathleen Weaver
Kathleen Weaver added the comment: I think I've incorporated everything wanted, and simplified things. Instead of going through how to change environment variables, I've pointed to another source. I've added the VS tools. -- Added file: http://bugs.python.org/file34475/kweaver.patch

[issue20265] Bring Windows docs up to date

2014-03-17 Thread Kathleen Weaver
Changes by Kathleen Weaver : Removed file: http://bugs.python.org/file34409/windowsDoc.patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue20265] Bring Windows docs up to date

2014-03-17 Thread Kathleen Weaver
Changes by Kathleen Weaver : Removed file: http://bugs.python.org/file34437/kweaver.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue20265] Bring Windows docs up to date

2014-03-17 Thread Kathleen Weaver
Changes by Kathleen Weaver : Removed file: http://bugs.python.org/file34474/kweaver.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue19977] Use "surrogateescape" error handler for sys.stdin and sys.stdout on UNIX for the C locale

2014-03-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3589980c98de by Victor Stinner in branch 'default': Issue #19977, #19036: Always include in pythonrun.c http://hg.python.org/cpython/rev/3589980c98de New changeset 94d5025c70a3 by Victor Stinner in branch 'default': Issue #19977: Enable test_c_loca

[issue19036] setlocale fails due to locale.h being wrapped up in LANGINFO check.

2014-03-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3589980c98de by Victor Stinner in branch 'default': Issue #19977, #19036: Always include in pythonrun.c http://hg.python.org/cpython/rev/3589980c98de -- ___ Python tracker

[issue19977] Use "surrogateescape" error handler for sys.stdin and sys.stdout on UNIX for the C locale

2014-03-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset c9905e802042 by Victor Stinner in branch 'default': Issue #19977: Fix test_capi when LC_CTYPE locale is POSIX http://hg.python.org/cpython/rev/c9905e802042 -- ___ Python tracker

[issue7676] IDLE shell shouldn't use TABs

2014-03-17 Thread Kamushin Shen
Kamushin Shen added the comment: I'm a GSOC student. And I submit this patch as a part of my proposal. This patch solve the copy-paste problem by judging the first line. However, it seems a little ugly in IDLE. -- nosy: +Kamushin.Shen Added file: http://bugs.python.org/file34476/fix_ind

[issue20965] Clang devguide update

2014-03-17 Thread Jeffrey Walton
New submission from Jeffrey Walton: Updated. Its a lot easier to identify gaps and update once its seen with formatting. * Added info on interpreting results * Added info on flags and CFLAGS, CXXFLAGS, CC, and CXX * Added info on Mac OS X * Asan -> ASan, UBsan -> UBSan * Fixed UBSan example for

[issue20965] Clang devguide update

2014-03-17 Thread Jeffrey Walton
Jeffrey Walton added the comment: Contributor license was signed, though I don't consider my self a contributor. The devs are making the real contributions. -- ___ Python tracker __

[issue20965] Clang devguide update

2014-03-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5746108c02c0 by Benjamin Peterson in branch 'default': updates to the clang docs from Jeffrey Walton (closes #20965) http://hg.python.org/devguide/rev/5746108c02c0 -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected stat

[issue7918] distutils always ignores byte compilation errors

2014-03-17 Thread Éric Araujo
Éric Araujo added the comment: We all agree Python files with invalid syntax should be allowed, but some error message should be logged. From the py_compile docs, this is already what the compile function does if the doraise argument is false (default), so what’s needed here is a unit test th

[issue10747] Include version info in Windows shortcuts

2014-03-17 Thread Olive Kilburn
Olive Kilburn added the comment: I'm testing a patch for this. This will be the first time I've contributed. -- nosy: +Olive.Kilburn ___ Python tracker ___ __

[issue20062] Should the devguide document emacs/vim support?

2014-03-17 Thread Éric Araujo
Éric Araujo added the comment: I’m not opposed to the short page about Emacs currently in the devguide, and a similar page about vim could be useful (the default settings for indentation are bad), but I’m also not opposed with merging the contents into the wiki page about editors and just incl

[issue1738] Add match parameter to filecmp.dircmp to ignore using patterns

2014-03-17 Thread Nikolaus Rath
Nikolaus Rath added the comment: Attached is an updated patch that addresses the comments from Rietveld. Thanks for the feedback! -- Added file: http://bugs.python.org/file34478/issue1738_r2.diff ___ Python tracker

[issue20491] textwrap: Non-breaking space not honored

2014-03-17 Thread Éric Araujo
Éric Araujo added the comment: NON-BREAKING SPACE and NARROW NON-BREAKING SPACE are characters whose intent is clear and who are used by knowledgeable users and smart software, for example LibreOffice with an fr_FR locale. I don’t know about the other characters listed by Serhiy, and I wouldn

[issue19873] There is a duplicate function in Lib/test/test_pathlib.py

2014-03-17 Thread Éric Araujo
Changes by Éric Araujo : -- assignee: -> pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue10835] sys.executable default and altinstall

2014-03-17 Thread Éric Araujo
Changes by Éric Araujo : -- versions: +Python 3.5 -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mail

[issue7677] upload: improve display for error messages from gpg

2014-03-17 Thread Éric Araujo
Éric Araujo added the comment: Notes for contributors: * Ignore what I said about distutils2, it’s not an active project anymore. This ticket is about distutils in the standard library. * To test changes, you can run setup.py commands without really uploading stuff to PyPI, there is a special

[issue20900] distutils register command should print text, not bytes repr

2014-03-17 Thread Éric Araujo
Éric Araujo added the comment: Were you able to reproduce the bug before you changed the code? I saw clean text when registering a release with success, and clean text too when trying to register a release for a project I was not owner of. -- ___ P

[issue14332] Better explain "junk" concept in difflib doc

2014-03-17 Thread Alba Magallanes
Alba Magallanes added the comment: I removed the References to 2.x version. -- Added file: http://bugs.python.org/file34479/issue14332_2.patch ___ Python tracker ___

<    1   2