[issue18092] Python 2.7.5 installation broken on OpenSuse 12.2

2013-05-28 Thread Andreas Jung
Changes by Andreas Jung : -- components: +Build ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue18092] Python 2.7.5 installation broken on OpenSuse 12.2

2013-05-28 Thread Andreas Jung
New submission from Andreas Jung: I tried to install 2.7.5 on my OpenSuse 12.2 (latest patches) ajung@blackmoon2:~/sandboxes/mib.portal> cat /etc/issue Welcome to openSUSE 12.2 "Mantis" - Kernel \r (\l). Compilation went fine (no visible errors). Starting the interpreter gives me: ajung@blac

[issue18047] Descriptors get invoked in old-style objects and classes

2013-05-28 Thread Raymond Hettinger
Raymond Hettinger added the comment: We document what we're willing to guarantee. The exposure of descriptors in old-style classes was an incidental implementation detail. Sorry, I'm going to close this one. Besides, it's time to start forgetting Python 2 and move along :-) -- reso

[issue17511] Idle find function closes after each find operation

2013-05-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: I closed #14146. Same comment will apply here once this is committed. I would like to try the latest patch here before that, and will try to do so tomorrow. I agree with trying to be consistent across platforms. I am pretty sure that use of multiple personal c

[issue14146] IDLE: source line in editor doesn't highlight when debugging

2013-05-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: This appears fixed for not, even if not the way we would like. Thanks. If a future tk changes, a new patch will be version-dependent and that will be a new issue. -- resolution: later -> fixed status: pending -> closed _

[issue17511] Idle find function closes after each find operation

2013-05-28 Thread Roger Serwy
Roger Serwy added the comment: I debated whether or not to leave #14146 as pending or to close it out altogether. I'd rather not let the design decisions of Tk dictate inconsistent cross-platform behavior for IDLE, but I'm willing to hear Tk's rationale and possible fix for that problem. I wo

[issue18052] IDLE 3.3.2 Windows taskbar icon regression

2013-05-28 Thread Roger Serwy
Roger Serwy added the comment: For me, 3.3.2 32-bit won't pin to the taskbar, but 3.3.1 can. Running lnk-parser on the .lnk files for IDLE reveal no obvious differences. -- ___ Python tracker _

[issue1693050] \w not helpful for non-Roman scripts

2013-05-28 Thread Jeffrey C. Jacobs
Jeffrey C. Jacobs added the comment: Maybe you could show us the byte-for-byte hex of the string you're testing so we can examine if it's really a code point intending word boundary or just a code point for the sake of beginning a new character. --

[issue18020] html.escape 10x slower than cgi.escape

2013-05-28 Thread A.M. Kuchling
A.M. Kuchling added the comment: Matt's patch looks good to me. It removes two module-level dicts, but they're marked as internal, so that's OK. There's already a test case that exercises html.escape(), so I don't think any additional tests are needed. -- nosy: +akuchling __

[issue15392] Create a unittest framework for IDLE

2013-05-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 968f6094788b by Terry Jan Reedy in branch '3.3': Issue #15392: Do not run tests if threading/_thread not available. Otherwise http://hg.python.org/cpython/rev/968f6094788b -- ___ Python tracker

[issue16102] uuid._netbios_getnode() is outdated

2013-05-28 Thread A.M. Kuchling
A.M. Kuchling added the comment: This patch seems obviously correct to me, so it should be applied. It looks like there's already a test in test_uuid.py that exercises _netbios_getnode() if the netbios module is importable, so there's no test to add, though maybe we need a buildbot that has

[issue18091] Remove PyNoArgsFunction

2013-05-28 Thread Larry Hastings
New submission from Larry Hastings: There's a typedef in methodobject.h called PyNoArgsFunction. You might think it's used for METH_NOARGS functions--you'd be wrong, those use PyCFunction and pass in NULL for args. No, PyNoArgsFunction is never used. Nor is it documented. It's found in exa

[issue18090] dict_contains first argument declared register, and shouldn't be

2013-05-28 Thread Larry Hastings
New submission from Larry Hastings: I'm monkeying around with CPython trunk, and just noticed the following declaration in Objects/dictobject.c: static PyObject * dict_contains(register PyDictObject *mp, PyObject *key) Although dict_contains is a static method, it's cast to PyCFunction

[issue1554133] PyOS_InputHook() and related API funcs. not documented

2013-05-28 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed versions: -Python 2.7, Python 3.3 ___ Python tracker ___

[issue1554133] PyOS_InputHook() and related API funcs. not documented

2013-05-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 672614d809a1 by Andrew Kuchling in branch 'default': #1554133: Document PyOS_InputHook, PyOS_ReadlineFunctionPointer http://hg.python.org/cpython/rev/672614d809a1 -- nosy: +python-dev ___ Python tracker

[issue18089] Create importlib.abc.InspectLoader.load_module()

2013-05-28 Thread Brett Cannon
New submission from Brett Cannon: -- assignee: brett.cannon components: Library (Lib) messages: 190261 nosy: brett.cannon priority: normal severity: normal stage: test needed status: open title: Create importlib.abc.InspectLoader.load_module() type: enhancement versions: Python 3.4 ___

[issue18089] Create importlib.abc.InspectLoader.load_module()

2013-05-28 Thread Brett Cannon
Changes by Brett Cannon : -- dependencies: +Create importlib.abc.Loader.init_module_attrs() ___ Python tracker ___ ___ Python-bugs-lis

[issue18086] Create importlib.util.set_attrs_post_import()

2013-05-28 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> rejected status: open -> closed superseder: -> Create importlib.abc.Loader.init_module_attrs() ___ Python tracker ___ __

[issue18088] Create importlib.abc.Loader.init_module_attrs()

2013-05-28 Thread Brett Cannon
New submission from Brett Cannon: There are a bunch of attributes that need to be set on a module, and yet they are only handled by various decorators in importlib.util. The problem with that is there is no way in the API to override or expand upon setting those attributes pre-loading; only po

[issue18080] setting CC no longer overrides default linker for extension module builds on OS X

2013-05-28 Thread Ned Deily
Ned Deily added the comment: Committed for release with 2.7.6 and 3.3.3. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue18080] setting CC no longer overrides default linker for extension module builds on OS X

2013-05-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset ca24bc6a5a4b by Ned Deily in branch '2.7': Issue #18080: When building a C extension module on OS X, if the compiler http://hg.python.org/cpython/rev/ca24bc6a5a4b New changeset 75432fb6b9af by Ned Deily in branch '3.3': Issue #18080: When building a

[issue18087] os.listdir don't show hidden option

2013-05-28 Thread Dmi Baranov
Dmi Baranov added the comment: So, I'm having a .gitignore file on Windows. Its hidden or not? In other words, only your code feel the difference in "hidden files policy". BTW, Mas OSX using two ways - dotfiles and "invisible" flags in Finder: $ chflags hidden i-am-hidden-now.txt (but 'ls' sho

[issue18083] _sysconfigdata.py is installed in an arch-independent directory

2013-05-28 Thread Matthias Klose
Matthias Klose added the comment: Did Solaris adopt MultiArch? ;-P Nice! So what I did for the Debian and Ubuntu builds is: - to rename plat-linux to plat- (or plat-) - and install it there. Note that IN.py is another architecture dependent file which differs at least on several linux

[issue18087] os.listdir don't show hidden option

2013-05-28 Thread Dražen Lučanin
New submission from Dražen Lučanin: I would like to be able to list a directory, but without showing hidden files. Currently, as discussed in a SO question [1], one has to either code this manually or resort to other libraries (glob). This functionality should be available in the os module. [

[issue18086] Create importlib.util.set_attrs_post_import()

2013-05-28 Thread Brett Cannon
New submission from Brett Cannon: There is no good reason to have set_loader and set_package separately. There should just be a single decorator which sets both of those attributes post-import (with the proper doc note saying use module_for_loader instead when possible to have the attributes s

[issue18070] change importlib.util.module_for_loader to unconditionally set attributes

2013-05-28 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> fixed stage: test needed -> committed/rejected status: open -> closed ___ Python tracker ___

[issue18070] change importlib.util.module_for_loader to unconditionally set attributes

2013-05-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 185a0e649fb8 by Brett Cannon in branch 'default': Issue #18070: importlib.util.module_for_loader() now sets __loader__ http://hg.python.org/cpython/rev/185a0e649fb8 -- nosy: +python-dev ___ Python tracker

[issue15767] add ImportNotFoundError

2013-05-28 Thread Brett Cannon
Changes by Brett Cannon : -- assignee: -> brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue18050] embedded interpreter or virtualenv fails with "ImportError: cannot import name MAXREPEAT"

2013-05-28 Thread Ned Deily
Ned Deily added the comment: Serhly, while I don't disagree with your points, I should have made clearer that the issue here is that the _sre module is a static module (built into the interpreter executable or shared lib as shown in Modules/Setup.dist) and *not* included in the shared library

[issue18084] wave.py should use sys.byteorder to determine endianess

2013-05-28 Thread Hideaki Takahashi
Changes by Hideaki Takahashi : -- keywords: +patch Added file: http://bugs.python.org/file30406/18084.patch ___ Python tracker ___ ___

[issue18083] _sysconfigdata.py is installed in an arch-independent directory

2013-05-28 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +dmalcolm, doko ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue18085] Verifying refcounts.dat

2013-05-28 Thread Skip Montanaro
Skip Montanaro added the comment: > Fred L. Drake, Jr. added the comment: > > Were I adding that today, I'd use a more verbose (but more standard) > format, like configparser or JSON. If any further use is going to be > made of it, that should be considered. Colon-delimited is a pretty > fragil

[issue18085] Verifying refcounts.dat

2013-05-28 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. added the comment: Were I adding that today, I'd use a more verbose (but more standard) format, like configparser or JSON. If any further use is going to be made of it, that should be considered. Colon-delimited is a pretty fragile format. -- ___

[issue16895] Batch file to mimic 'make' on Windows

2013-05-28 Thread Zachary Ware
Zachary Ware added the comment: > Brian Curtin added the comment: > > Don't we already require an existing Python to build some of the third-party > stuff, e.g., OpenSSL? Only for building a 64-bit Python on 32-bit Windows. Otherwise, OpenSSL is built using the just-built interpreter. > I don

[issue16895] Batch file to mimic 'make' on Windows

2013-05-28 Thread Brian Curtin
Brian Curtin added the comment: Don't we already require an existing Python to build some of the third-party stuff, e.g., OpenSSL? I don't think the bootstrapping issue holds that much weight. Adding some huge batch script that maybe one or two people even know how to modify is a much higher

[issue18085] Verifying refcounts.dat

2013-05-28 Thread Skip Montanaro
Skip Montanaro added the comment: As far as I can tell that file is still manually maintained. I see it mentioned in Doc/conf.py, but nowhere else. It shouldn't be hard to deal with manually, as the C API doesn't change that often. A verifier shouldn't be terribly difficult to write, as Pyth

[issue16895] Batch file to mimic 'make' on Windows

2013-05-28 Thread Zachary Ware
Zachary Ware added the comment: > Richard Oudkerk added the comment: > > I can't say I know enough about batch files to understand much of the code, > but a few notes: > > Windows XP does not have the command "where" which you use -- Python 3.4 will > still support XP. Oh, that is an issue. I

[issue18085] Verifying refcounts.dat

2013-05-28 Thread Brett Cannon
Brett Cannon added the comment: Wow, I didn't even know that file existed. It could actually help with some static analysis of the C code to verify that the refcounts are as expected w/o actually having to do inter-procedural analysis to figure out all of the refcount values. I wonder if Dave'

[issue16895] Batch file to mimic 'make' on Windows

2013-05-28 Thread Richard Oudkerk
Richard Oudkerk added the comment: > Can't this just be a Python script? That would cause bootstrap issues for people who do not already have python installed. -- ___ Python tracker __

[issue18084] wave.py should use sys.byteorder to determine endianess

2013-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I have added some comments on Rietveld. -- assignee: -> serhiy.storchaka stage: -> patch review type: -> enhancement versions: +Python 3.4 ___ Python tracker _

[issue16895] Batch file to mimic 'make' on Windows

2013-05-28 Thread Brian Curtin
Brian Curtin added the comment: Can't this just be a Python script? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue16895] Batch file to mimic 'make' on Windows

2013-05-28 Thread Richard Oudkerk
Richard Oudkerk added the comment: I can't say I know enough about batch files to understand much of the code, but a few notes: Windows XP does not have the command "where" which you use -- Python 3.4 will still support XP. Except perhaps for looping I would prefer to get rid of the use of go

[issue18085] Verifying refcounts.dat

2013-05-28 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. added the comment: I'm a little surprised that still exists. The first version was generated manually. -- nosy: +fdrake ___ Python tracker ___ ___

[issue1772673] Replacing char* with const char*

2013-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See also issue9369. -- dependencies: +const char* for PyObject_CallMethod and PyObject_CallFunction ___ Python tracker ___ _

[issue18085] Verifying refcounts.dat

2013-05-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0889ab0d0da1 by Serhiy Storchaka in branch '3.3': Issue #18085: Fix PyObject_CallMethodObjArgs()'s entry in refcounts.dat. http://hg.python.org/cpython/rev/0889ab0d0da1 New changeset ef9d42b98a3d by Serhiy Storchaka in branch '2.7': Issue #18085: Fi

[issue18047] Descriptors get invoked in old-style objects and classes

2013-05-28 Thread Arnaud Porterie
Arnaud Porterie added the comment: Sorry if I am missing something, but it seems that the documentation doesn't match the behavior: the doc says that descriptors are invoked only for new styles objects and classes, while the attached code seems to prove the contrary. If my understanding is cor

[issue18084] wave.py should use sys.byteorder to determine endianess

2013-05-28 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue18085] Verifying refcounts.dat

2013-05-28 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: I found one error in Doc/data/refcounts.dat (see issue9369, second argument of PyObject_CallMethodObjArgs is `PyObject*`, not `char*`). Perhaps there are other errors. How this file was generated first? Is it possible to write a tool which will automatical

[issue18084] wave.py should use sys.byteorder to determine endianess

2013-05-28 Thread Hideaki Takahashi
Changes by Hideaki Takahashi : Added file: http://bugs.python.org/file30405/diff ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue18084] wave.py should use sys.byteorder to determine endianess

2013-05-28 Thread Hideaki Takahashi
New submission from Hideaki Takahashi: wave.py uses struct based endianness detecting code. However there is sys.byteorder in Python since Python 2.0. I think wave.py should use sys.byteorder to determine endianness. -- components: Library (Lib) messages: 190235 nosy: hideaki_t priority

[issue11468] Improve unittest basic example in the doc

2013-05-28 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: -serhiy.storchaka stage: commit review -> patch review versions: +Python 3.4 -Python 3.2 ___ Python tracker ___ __

[issue14616] subprocess docs should mention pipes.quote/shlex.quote

2013-05-28 Thread Éric Araujo
Éric Araujo added the comment: > .. deprecated:: 1.6 This looks weird to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue17925] asynchat.async_chat.initiate_send : del deque[0] is not safe

2013-05-28 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: After applying the patch I get these 2 failures on Linux: == FAIL: test_simple_producer (__main__.TestAsynchat) -- Tracebac

[issue17925] asynchat.async_chat.initiate_send : del deque[0] is not safe

2013-05-28 Thread Andrew Stormont
Andrew Stormont added the comment: Looks like a reasonable fix to me. What needs to be done to get this integrated? -- nosy: +andy_js ___ Python tracker ___ ___

[issue15239] Abandoned Tools/unicode/mkstringprep.py

2013-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: And here is a patch which changes behavior. It adds check for validating end of table detection. -- Added file: http://bugs.python.org/file30404/mkstringprep_check.patch ___ Python tracker

[issue15239] Abandoned Tools/unicode/mkstringprep.py

2013-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a minimal patch. -- Added file: http://bugs.python.org/file30402/mkstringprep_min.patch ___ Python tracker ___ ___

[issue18078] threading.Condition to allow notify on a specific waiter

2013-05-28 Thread João Bernardo
João Bernardo added the comment: > Condition.wait_for_any() would create a single inner lock and add it > to the _waiters list for each of the condition variables Now I see your point! Could it also have one (optional) argument so I can provide this lock myself? >while : >cond.wai

[issue15239] Abandoned Tools/unicode/mkstringprep.py

2013-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a pure cosmetic patch. -- Added file: http://bugs.python.org/file30403/mkstringprep_cosmetic.patch ___ Python tracker ___

[issue18078] threading.Condition to allow notify on a specific waiter

2013-05-28 Thread Richard Oudkerk
Richard Oudkerk added the comment: > You cannot associate several conditions to the *inner lock*, because you > don't have access to them (otherwise I wouldn't open this issue). Condition.wait_for_any() would create a single inner lock and add it to the _waiters list for each of the condition

[issue18082] Inconsistent behavior of IOBase methods on closed files

2013-05-28 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +benjamin.peterson, hynek, pitrou, stutzbach ___ Python tracker ___ ___ Python-bugs-list mailin

[issue1693050] \w not helpful for non-Roman scripts

2013-05-28 Thread Matthew Barnett
Matthew Barnett added the comment: I'm not sure what you're saying. The re module in Python 3.3 matches only the first codepoint, treating the second codepoint as not part of a word, whereas the regex module matches all 6 codepoints, treating them all as part of a single word. -- ___

[issue18083] _sysconfigdata.py is installed in an arch-independent directory

2013-05-28 Thread Maciej Bliziński
New submission from Maciej Bliziński: _sysconfigdata.py is installed into ${prefix}/lib/pythonX.Y/_sysconfigdata.py which is an architecture-independent directory, as opposed to a path starting with e.g. ${libdir}, which is architecture-dependent. But _sysconfigdata.py contains architecture-de

[issue18082] Inconsistent behavior of IOBase methods on closed files

2013-05-28 Thread Dwight Guth
New submission from Dwight Guth: Consider the following program: import io class A(io.IOBase): def __init__(self): self.x = 5 def read(self, limit=-1): self.x -= 1 if self.x > 0: return b"5" return b"" def seek(self, offset, whence=0): return 0 def wr

[issue15239] Abandoned Tools/unicode/mkstringprep.py

2013-05-28 Thread Martin v . Löwis
Martin v. Löwis added the comment: I find the patch too large to review, and it appears to contain unrelated changes. Can you kindly split it up into two patches, namely A) changes that are really absolutely necessary to make it work again B) patches that are purely cosmetic, and do not affect

[issue13355] random.triangular error when low = high=mode

2013-05-28 Thread Mark Dickinson
Changes by Mark Dickinson : -- nosy: -mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue18078] threading.Condition to allow notify on a specific waiter

2013-05-28 Thread João Bernardo
João Bernardo added the comment: > It would be for waiting for several conditions associated with the > same lock, not for waiting for several locks. A Condition uses a 2 lock mechanism: - outer lock: one for all the waiters to access the Condition object - inner lock: one for each waiter

[issue13355] random.triangular error when low = high=mode

2013-05-28 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: committed/rejected -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue16662] load_tests not invoked in package/__init__.py

2013-05-28 Thread Leo Arias
Changes by Leo Arias : -- nosy: +elopio ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue18078] threading.Condition to allow notify on a specific waiter

2013-05-28 Thread Richard Oudkerk
Richard Oudkerk added the comment: > This could solve the waiting problem for the "thread", but also may > keep the other Condition objs waiting -- and that may not be problem > because I'm already using .notify_all() I don't understand what you mean. > Probably this function have more use ca

[issue18081] test_logging failure in WarningsTest on buildbots

2013-05-28 Thread R. David Murray
New submission from R. David Murray: The following failure is showing up frequently in the buildbots. I haven't checked closely enough to be sure if it is a heisenberg, but I suspect it is, since it doesn't seem to be related to any of the recent changesets that would have been included in th

[issue1693050] \w not helpful for non-Roman scripts

2013-05-28 Thread Jeffrey C. Jacobs
Jeffrey C. Jacobs added the comment: Matthew, I think that is considered a single word in Sanscrit or Thai so Python 3.x is correct. In this case you've written the Sanscrit word for Hindi. -- ___ Python tracker

[issue8508] 2to3 fixer for gettext's .ugettext

2013-05-28 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On May 26, 2013, at 12:37 PM, Mark Lawrence wrote: >Barry, would you like to follow up on this? My personal interest in this has waned, since I try to avoid 2to3 like the plague. ;) -- ___ Python tracker

[issue17691] Fix test discovery for test_univnewlines.py

2013-05-28 Thread Zachary Ware
Zachary Ware added the comment: Looking at this again, the test_main magic wasn't too arcane, so here's a patch that does away with test_main (or load_tests) completely. -- Added file: http://bugs.python.org/file30401/test_univnewlines_discovery.v2.diff

[issue18078] threading.Condition to allow notify on a specific waiter

2013-05-28 Thread João Bernardo
João Bernardo added the comment: > But it might be nice to be able to wait on multiple conditions at > once, assuming they are associated with the same lock. Maybe we could > have a static method This could solve the waiting problem for the "thread", but also may keep the other Condition obj

[issue17846] Building Python on Windows - Supplementary info

2013-05-28 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue18065] set __path__ = [] for frozen packages

2013-05-28 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue16895] Batch file to mimic 'make' on Windows

2013-05-28 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue17987] test.support.captured_stderr, captured_stdin not documented

2013-05-28 Thread Dmi Baranov
Dmi Baranov added the comment: Thanks for review, Serhiy - updated. -- Added file: http://bugs.python.org/file30400/issue17987_5.patch ___ Python tracker ___

[issue17846] Building Python on Windows - Supplementary info

2013-05-28 Thread Zachary Ware
Zachary Ware added the comment: Michael, you may be interested in a configure.bat/make.bat system which I have proposed in issue16895. I would certainly be interested in your review of it, as it seems that core developers who have the ability, inclination, and (probably most importantly) time

[issue18078] threading.Condition to allow notify on a specific waiter

2013-05-28 Thread Richard Oudkerk
Richard Oudkerk added the comment: > BTW, I find .notify(N) not much useful, because the docs say it may wake > more threads on a different implementation and also I can't never know > whom am I waking. The fact that more than N threads can wake up is not a problem if you are retesting an app

[issue15239] Abandoned Tools/unicode/mkstringprep.py

2013-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Is there a chance, Martin? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue16741] `int()`, `float()`, etc think python strings are null-terminated

2013-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Are there any other comments? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue18025] Buffer overflow in BufferedIOBase.readinto()

2013-05-28 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue17872] Crash in marshal.load() with bad reader

2013-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could anyone review a patch please? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue17987] test.support.captured_stderr, captured_stdin not documented

2013-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > I'd rather see captured_stdin handled separately, perhaps with some > additional comments in the example, to emphasize the intended usage > pattern: However all three functions share a description. sys.stdin also has totally different usage pattern than sys

[issue18025] Buffer overflow in BufferedIOBase.readinto()

2013-05-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset b864f4056b78 by Serhiy Storchaka in branch '3.3': Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw http://hg.python.org/cpython/rev/b864f4056b78 New changeset ad56dff3602f by Serhiy Storchaka in branch 'default': Issue #18025:

[issue18075] Infinite recursion tests triggering a segfault

2013-05-28 Thread Brett Cannon
Brett Cannon added the comment: LGTM -- assignee: -> ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue17987] test.support.captured_stderr, captured_stdin not documented

2013-05-28 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. added the comment: +1 for issue17987_4.patch Thanks, Dmi! -- ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue17987] test.support.captured_stderr, captured_stdin not documented

2013-05-28 Thread Eli Bendersky
Changes by Eli Bendersky : -- nosy: -eli.bendersky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue18075] Infinite recursion tests triggering a segfault

2013-05-28 Thread Ronald Oussoren
Ronald Oussoren added the comment: The update fixes the name error mention in rietveld. -- Added file: http://bugs.python.org/file30399/issue-18075-osx-stacksize-update.txt ___ Python tracker _

[issue17746] test_shutil.TestWhich.test_non_matching_mode fails when running as root

2013-05-28 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue17987] test.support.captured_stderr, captured_stdin not documented

2013-05-28 Thread Dmi Baranov
Dmi Baranov added the comment: Amended, as discussed. Also changed documentation from "how to use a context managers with that" to "how it works". -- Added file: http://bugs.python.org/file30398/issue17987_4.patch ___ Python tracker

[issue17746] test_shutil.TestWhich.test_non_matching_mode fails when running as root

2013-05-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset b98380a1d979 by Serhiy Storchaka in branch '3.3': Issue #17746: Skip test_shutil.test_non_matching_mode when run as root or http://hg.python.org/cpython/rev/b98380a1d979 New changeset 96e543ba96a4 by Serhiy Storchaka in branch 'default': Issue #1774

[issue18011] Inconsistency between b32decode() documentation, docstring and code

2013-05-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 29a823f31465 by Serhiy Storchaka in branch 'default': Issue #18011: Silence an unrelated noise introduced in changeset 1b5ef05d6ced. http://hg.python.org/cpython/rev/29a823f31465 -- ___ Python tracker

[issue18011] Inconsistency between b32decode() documentation, docstring and code

2013-05-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0b9bcb2ac145 by Serhiy Storchaka in branch '3.3': Issue #18011: base64.b32decode() now raises a binascii.Error if there are http://hg.python.org/cpython/rev/0b9bcb2ac145 New changeset 7446f53ba2d2 by Serhiy Storchaka in branch 'default': Issue #1801

[issue18011] Inconsistency between b32decode() documentation, docstring and code

2013-05-28 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue18075] Infinite recursion tests triggering a segfault

2013-05-28 Thread Ronald Oussoren
Ronald Oussoren added the comment: The attached patch fixes the problem on OSX by increasing the maximum stack size of the main thread from 8M (the default) to 16M. NOTE: The -Wl,-stack_size,... option cannot be added to LDFLAGS, ld errors out when that option is used when linking a shared li

[issue17987] test.support.captured_stderr, captured_stdin not documented

2013-05-28 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. added the comment: Joining the documentation for captured_stderr and captured_stdout makes sense, as they can really use a single example, and the usage is completely parallel. I'd rather see captured_stdin handled separately, perhaps with some additional comments in the examp

[issue17987] test.support.captured_stderr, captured_stdin not documented

2013-05-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I think it will be better to describe all three functions together (as sys.stdin/stdout/stderr). .. function:: captured_stdin() captured_stdout() captured_stderr() ... description ... Example use:: ... example for captu

[issue17987] test.support.captured_stderr, captured_stdin not documented

2013-05-28 Thread Dmi Baranov
Dmi Baranov added the comment: `captured_stdin` test changed, docs updated. -- Added file: http://bugs.python.org/file30396/issue17987_3.patch ___ Python tracker ___

  1   2   >