[issue18931] new selectors module should support devpoll on Solaris

2014-03-17 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Sorry for not being able to rewrite the patch in time for 3.4. I will provide an updated patch (I need to setup an Open Solaris box first though). The code for poll(), epoll() and /dev/poll will have many similarities, so I think it makes sense to refactor

[issue20265] Bring Windows docs up to date

2014-03-17 Thread Kathleen Weaver
Kathleen Weaver added the comment: I just figured out why Windows 8 isn't behaving the way the documentation says. You have to use Command Prompt (Admin). Command Prompt (the first option IGNORES the path) Now it's time to have a discussion with a Windows Project Manager. --

[issue18931] new selectors module should support devpoll on Solaris

2014-03-17 Thread Guido van Rossum
Guido van Rossum added the comment: I actually prefer some code duplication in this case. Makes the review easier. On Mar 17, 2014 2:17 PM, Giampaolo Rodola' rep...@bugs.python.org wrote: Giampaolo Rodola' added the comment: Sorry for not being able to rewrite the patch in time for 3.4. I

[issue18931] new selectors module should support devpoll on Solaris

2014-03-17 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: OK, I will provide a patch soon. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18931 ___ ___

[issue20879] base64 module of Python 3.4 uses 920 kB of memory

2014-03-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7093d5758954 by Victor Stinner in branch '3.4': Issue #20879: Delay the initialization of encoding and decoding tables for http://hg.python.org/cpython/rev/7093d5758954 New changeset 06d646935c9a by Victor Stinner in branch 'default': (Merge 3.4)

[issue20879] base64 module of Python 3.4 uses 920 kB of memory

2014-03-17 Thread STINNER Victor
STINNER Victor added the comment: Thanks Serhiy, I merged your last patch with mine. This issue should now be fixed. As Martin wrote, an enhancement would be to reimplement these functions in C without such table. -- resolution: - fixed status: open - closed

[issue19640] Drop _source attribute of namedtuple

2014-03-17 Thread STINNER Victor
STINNER Victor added the comment: As an alternative, how about turning _source into a property? A class or an instance property? A class property requires a metaclass. I guess that each namedtuple type requires its own metaclass, right? -- ___

[issue20574] Implement incremental decoder for cp65001

2014-03-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 08f9b881f78c by Victor Stinner in branch 'default': Issue #20574: Implement incremental decoder for cp65001 code http://hg.python.org/cpython/rev/08f9b881f78c -- nosy: +python-dev ___ Python tracker

[issue20574] Implement incremental decoder for cp65001

2014-03-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 85b87789f048 by Victor Stinner in branch 'default': Issue #20574: Add more tests for cp65001 http://hg.python.org/cpython/rev/85b87789f048 -- ___ Python tracker rep...@bugs.python.org

[issue20879] base64 module of Python 3.4 uses 920 kB of memory

2014-03-17 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- stage: - committed/rejected ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20879 ___

[issue20574] Implement incremental decoder for cp65001

2014-03-17 Thread STINNER Victor
STINNER Victor added the comment: Could you please also add test_partial for CP65001 (if this will make sense)? I added CP65001Test which inherit from UTF8Test and so runs all UTF-8 tests on cp65001 codec. I'm surprised that the test pass. -- ___

[issue20574] Implement incremental decoder for cp65001

2014-03-17 Thread STINNER Victor
STINNER Victor added the comment: I don't feel the need to backport the new feature, so I'm closing the issue. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20574

[issue18931] new selectors module should support devpoll on Solaris

2014-03-17 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: BDFL talked :-). I can test the patch on a Solaris box, and Python has OpenSolaris buildbots. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18931 ___

[issue20954] Bug in subprocess._args_from_interpreter_flags causes MemoryError

2014-03-17 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- nosy: +sbt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20954 ___ ___ Python-bugs-list

[issue20941] pytime.c:184 and pytime.c:218: runtime error, outside the range of representable values of type 'long'

2014-03-17 Thread STINNER Victor
STINNER Victor added the comment: Shouldn't a range test based on TIME_T_MAX with an epsilon occur first? What is this constant? I don't see it in Python source code. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20941

[issue17110] sys.argv docs should explaining how to handle encoding issues

2014-03-17 Thread Sreepriya Chalakkal
Sreepriya Chalakkal added the comment: You are right. Instead of running ./python inside the python directory, I ran the default python of older version! Based on the stackoverflow link given, I tried to make some documentation. I am attaching the patch! -- keywords: +patch Added

[issue20915] Add pip section to experts list in devguide

2014-03-17 Thread Marcus Smith
Marcus Smith added the comment: ok, add me. -- nosy: +Marcus.Smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20915 ___ ___ Python-bugs-list

[issue20915] Add pip section to experts list in devguide

2014-03-17 Thread Éric Araujo
Éric Araujo added the comment: Nick, can you give Donald and Marcus sufficient rights for bug triage, or should we ask RDM? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20915 ___

[issue20910] Make sleep configurable in tests

2014-03-17 Thread STINNER Victor
STINNER Victor added the comment: I created #20964 to add the support.check_time_delta() function. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20910 ___

[issue20915] Add pip section to experts list in devguide

2014-03-17 Thread Éric Araujo
Éric Araujo added the comment: BTW, what about adding a “pip” component to the tracker with some auto-nosy list? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20915 ___

[issue20964] Add support.check_time_delta()

2014-03-17 Thread STINNER Victor
New submission from STINNER Victor: Follow-up of issue #20910: add a support.check_time_delta() function an a --check-time-delta command line option for Lib/test/regrtest.py. By default, the function tolerate a difference of 500 ms for the maximum delta. The idea is to set the

[issue20964] Add support.check_time_delta()

2014-03-17 Thread STINNER Victor
STINNER Victor added the comment: I ran test_time and test_asyncio on Linux and Windows with --check-time-delta=1e-9 and the tests passed. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20964

[issue20915] Add pip section to experts list in devguide

2014-03-17 Thread Paul Moore
Paul Moore added the comment: I've been around here for a while, but yeah, I'll keep an eye out for pip stuff now, too. Good thought. -- nosy: +pmoore ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20915

[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 rep...@bugs.python.org http://bugs.python.org/issue8813

[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 -

[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 ___

[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 rep...@bugs.python.org

[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

[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 last):

[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

[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 kathl...@kweaver.org: Removed file: http://bugs.python.org/file34409/windowsDoc.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20265 ___

[issue20265] Bring Windows docs up to date

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

[issue20265] Bring Windows docs up to date

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

[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 locale.h in pythonrun.c http://hg.python.org/cpython/rev/3589980c98de New changeset 94d5025c70a3 by Victor Stinner in branch 'default': Issue #19977: Enable

[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 locale.h in pythonrun.c http://hg.python.org/cpython/rev/3589980c98de -- ___ Python tracker rep...@bugs.python.org

[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 rep...@bugs.python.org

[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:

[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

[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 rep...@bugs.python.org http://bugs.python.org/issue20965

[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

[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

[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 rep...@bugs.python.org http://bugs.python.org/issue10747 ___

[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

[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 rep...@bugs.python.org

[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

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

2014-03-17 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- assignee: - pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19873 ___ ___ Python-bugs-list

[issue10835] sys.executable default and altinstall

2014-03-17 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- versions: +Python 3.5 -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10835 ___

[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

[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. -- ___

[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 rep...@bugs.python.org http://bugs.python.org/issue14332

<    1   2   3