[issue12567] curses implementation of Unicode is wrong in Python 3

2011-11-27 Thread STINNER Victor
STINNER Victor added the comment: New changeset bf51e32b2a81 by Victor Stinner in branch 'default': Issue #13415: test_curses skips unencodable characters http://hg.python.org/cpython/rev/bf51e32b2a81 (Oops, I copy-pasted the issue number from my previous commit, and the issue number was wrong

[issue13415] del os.environ[key] ignores errors

2011-11-27 Thread STINNER Victor
Changes by STINNER Victor : -- Removed message: http://bugs.python.org/msg148467 ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue12567] curses implementation of Unicode is wrong in Python 3

2011-11-27 Thread STINNER Victor
STINNER Victor added the comment: Compile output on OpenSolaris: Consider setting $PYTHONHOME to [:] ld: fatal: file /usr/local/lib/libncursesw.so: wrong ELF class: ELFCLASS32 ld: fatal: file processing errors. No output written to build/lib.solaris-2.11-i86pc-3.3-pydebug/readline.so collect2:

[issue13415] del os.environ[key] ignores errors

2011-11-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset bf51e32b2a81 by Victor Stinner in branch 'default': Issue #13415: test_curses skips unencodable characters http://hg.python.org/cpython/rev/bf51e32b2a81 -- ___ Python tracker

[issue13120] Default nosigint option to pdb.Pdb() prevents use in non-main thread

2011-11-27 Thread Ilya Sandler
Ilya Sandler added the comment: I think stuff like this can only be tested out-of-process. So I added an out-of-process test to test_pdb.py. The test passes with the fixed pdb.py. (and fails with the original one). Patch for the test attached. -- Added file: http://bugs.python.org/fi

[issue2775] Implement PEP 3108

2011-11-27 Thread Meador Inge
Changes by Meador Inge : -- nosy: +meador.inge ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue12627] Implement PEP 394: The "python" Command on Unix-Like Systems

2011-11-27 Thread Meador Inge
Changes by Meador Inge : -- nosy: +meador.inge ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue11107] Cache constant "slice" instances

2011-11-27 Thread Meador Inge
Changes by Meador Inge : -- nosy: +meador.inge ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue13405] Add DTrace probes

2011-11-27 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: New 3.3 version. - Use the cached UTF8 of strings inside the interpreter, instead of managing the details manually. - "line" probe works, even with "computed-gotos" optimization. The only missing feature now, compared with 2.7 version, is the "stack" helper

[issue13405] Add DTrace probes

2011-11-27 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : Removed file: http://bugs.python.org/file23792/d7c58422eada.diff ___ Python tracker ___ ___ Python-bugs-list mail

[issue13405] Add DTrace probes

2011-11-27 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : Added file: http://bugs.python.org/file23795/01f206595d16.diff ___ Python tracker ___ ___ Python-bugs-list mailin

[issue13443] wrong links and examples in the functional HOWTO

2011-11-27 Thread A.M. Kuchling
A.M. Kuchling added the comment: Yes, linking to the functional module was to point people to a module that might be useful, even if it's not in the stdlib. A numeric processing or socket handling HOWTO would also pretty much have to link to non-stdlib sources. The purpose of documentation

[issue13120] Default nosigint option to pdb.Pdb() prevents use in non-main thread

2011-11-27 Thread Meador Inge
Meador Inge added the comment: Normally a test case is needed. I tried the following: diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -595,6 +595,25 @@ def test_pdb_run_with_code_object(): (Pdb) continue """ +def tes

[issue13490] broken downloads counting on pypi.python.org

2011-11-27 Thread Martin v . Löwis
Martin v. Löwis added the comment: Thanks for the report; this is now fixed. Please use the PyPI bug tracker for such reports in the future, which can be found by following "Bug reports" on pypi.python.org, to http://sourceforge.net/tracker/?group_id=66150&atid=513503 -- resolution:

[issue7111] abort when stderr is closed

2011-11-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: Updated patch. -- Added file: http://bugs.python.org/file23794/nostdio2.patch ___ Python tracker ___ ___

[issue7111] abort when stderr is closed

2011-11-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: > +is_valid_fd(int fd) > [...] > +dummy_fd = dup(fd); > +if (dummy_fd < 0) > +return 0; > +close(dummy_fd); > > Why not use fstat() instead (does Windows have fstat()? And dup()?). Windows has dup(), but no fstat(). > +@unittest.skipIf

[issue13487] inspect.getmodule fails when module imports change sys.modules

2011-11-27 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: You are certainly right, but I wonder how this can happen. Are there modules which import something just by looking at them? Or is is some race condition due to another running thread? -- nosy: +amaury.forgeotdarc

[issue13475] Add '-p'/'--path0' command line option to override sys.path[0] initialisation

2011-11-27 Thread Matthew Woodcraft
Matthew Woodcraft added the comment: The proposed --nopath0 option is something I've wished I had in the past. If this is added, it would be good if it could be given a single-letter form too, because it's an option that would be useful in #! lines (they don't reliably support using more than

[issue13120] Default nosigint option to pdb.Pdb() prevents use in non-main thread

2011-11-27 Thread Georg Brandl
Georg Brandl added the comment: Patch seems fine to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue13490] broken downloads counting on pypi.python.org

2011-11-27 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue13120] Default nosigint option to pdb.Pdb() prevents use in non-main thread

2011-11-27 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +georg.brandl stage: -> patch review versions: +Python 3.3 ___ Python tracker ___ ___ Python-bug

[issue7611] shlex not posix compliant when parsing "foo#bar"

2011-11-27 Thread Meador Inge
Meador Inge added the comment: Here a some of the relevant links from POSIX 2008: 1. Shell Command Language - http://pubs.opengroup.org/onlinepubs/9699919799/idx/shell.html 3. Shell Command Language Rationale - http://pubs.opengroup.org/onlinepubs/9699919799/xrat/V4_xcu_chap02.html Sec

[issue11732] Skip decorator for tests requiring manual intervention on Windows

2011-11-27 Thread Brian Curtin
Brian Curtin added the comment: That would certainly be preferable when available on Windows 7. I'll look into how we can incorporate that. Thanks for the idea! -- ___ Python tracker

[issue11732] Skip decorator for tests requiring manual intervention on Windows

2011-11-27 Thread Catalin Iacob
Catalin Iacob added the comment: To avoid messing with system registry settings it sounds like WerRegisterRuntimeExceptionModule could also work, at least on Windows7 http://msdn.microsoft.com/en-us/library/windows/desktop1/dd408167%28v=VS.85%29.aspx There could be a dll which would do nothin

[issue11732] Skip decorator for tests requiring manual intervention on Windows

2011-11-27 Thread Catalin Iacob
Changes by Catalin Iacob : -- nosy: +catalin.iacob ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue5619] Pass MS CRT debug flags into subprocesses

2011-11-27 Thread Catalin Iacob
Changes by Catalin Iacob : -- nosy: +catalin.iacob ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2011-11-27 Thread Catalin Iacob
Changes by Catalin Iacob : -- nosy: +catalin.iacob ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue13120] Default nosigint option to pdb.Pdb() prevents use in non-main thread

2011-11-27 Thread Meador Inge
Changes by Meador Inge : -- nosy: +meador.inge ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue13487] inspect.getmodule fails when module imports change sys.modules

2011-11-27 Thread Meador Inge
Changes by Meador Inge : -- nosy: +meador.inge ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue11610] Improved support for abstract base classes with descriptors

2011-11-27 Thread Darren Dale
Darren Dale added the comment: I'll bump this one last time. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12567] curses implementation of Unicode is wrong in Python 3

2011-11-27 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: I am still concerned about the compilation warning in OpenIndiana buildbots :-( -- ___ Python tracker ___

[issue13415] del os.environ[key] ignores errors

2011-11-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 11bbeaf03894 by Charles-François Natali in branch '2.7': Issue #13415: Test in configure if unsetenv() has a return value or not. http://hg.python.org/cpython/rev/11bbeaf03894 New changeset 99f5a0475ead by Charles-François Natali in branch '2.7': I

[issue13415] del os.environ[key] ignores errors

2011-11-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 26275a1c229c by Charles-François Natali in branch '3.2': Issue #13415: Test in configure if unsetenv() has a return value or not. http://hg.python.org/cpython/rev/26275a1c229c New changeset bceb6aea8554 by Charles-François Natali in branch '3.2': I

[issue7111] abort when stderr is closed

2011-11-27 Thread Charles-François Natali
Charles-François Natali added the comment: (No Rietveld link): +is_valid_fd(int fd) [...] +dummy_fd = dup(fd); +if (dummy_fd < 0) +return 0; +close(dummy_fd); Why not use fstat() instead (does Windows have fstat()? And dup()?). +@unittest.skipIf(os.name == 'nt', "test

[issue13491] sqlite3 code adjustments

2011-11-27 Thread Nebelhom
New submission from Nebelhom : The code examples for the sqlite3 library were in some cases non-functional. With the help of Petri Lehtinen from core-mentorship, the following fixes are suggested. NOTE: Last issue is not resolved yet, but suggestions have been made. Could you please review an

[issue13490] broken downloads counting on pypi.python.org

2011-11-27 Thread holger krekel
New submission from holger krekel : Seems like pypi.python.org does not properly maintain download counters anymore, at least for a few packages i looked at like pytest,execnet,tox,nose. -- components: None messages: 148447 nosy: hpk priority: normal severity: normal status: open title: