[issue6167] Tkinter.Scrollbar: the activate method needs to return a value, and set should take only two args

2012-04-05 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue6225] Fixing several minor bugs in Tkinter.Canvas and one in Misc._configure

2012-04-05 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue3033] tkFont added displayof where necessary

2012-04-05 Thread Andrew Svetlov
Andrew Svetlov added the comment: Thanks to Guilherme Polo. -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mail

[issue3033] tkFont added displayof where necessary

2012-04-05 Thread Andrew Svetlov
Andrew Svetlov added the comment: Closing as fixed -- assignee: -> asvetlov resolution: -> fixed stage: patch review -> committed/rejected ___ Python tracker ___ __

[issue3033] tkFont added displayof where necessary

2012-04-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 774c2afa6665 by Andrew Svetlov in branch 'default': Issue #3033: Add displayof parameter to tkinter font. http://hg.python.org/cpython/rev/774c2afa6665 -- nosy: +python-dev ___ Python tracker

[issue14505] PyFile_FromString leaks file descriptors in python 2.7

2012-04-05 Thread Matthias Klose
Changes by Matthias Klose : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue14505] PyFile_FromString leaks file descriptors in python 2.7

2012-04-05 Thread Matthias Klose
New submission from Matthias Klose : [forwarded from http://bugs.debian.org/664529] seen with 2.7.3 rc2 File descriptors opened by PyFile_FromString don't get closed when the reference count is decreased. Here's my test program, pythony.c: #include int main() { int i = 0; PyObject *obj;

[issue14504] Suggestion to improve argparse's help messages for "store_const"

2012-04-05 Thread Amnon Harel
New submission from Amnon Harel : argparse's help messages for variables that use "store_const" can probably be improved: - propagate the default to all the options - mark the default option as such explicitly - group the keywords that have the same destination together (?) - place the default o

[issue14321] Do not run pgen during the build if files are up to date

2012-04-05 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- resolution: -> fixed ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue14478] Decimal hashing very slow, could be cached

2012-04-05 Thread Ramchandra Apte
Ramchandra Apte added the comment: I recommend that __hash__ should use functools.lru_cache for caching. -- nosy: +ramchandra.apte ___ Python tracker ___ ___

[issue14503] docs:Code not highlighted

2012-04-05 Thread Ramchandra Apte
Ramchandra Apte added the comment: Whoops - In http://docs.python.org/dev/whatsnew/3.3.html#pep-380-syntax-for-delegating-to-a-subgenerator , two code samples are not highlighted. -- ___ Python tracker

[issue14503] docs:Code not highlighted

2012-04-05 Thread Ramchandra Apte
New submission from Ramchandra Apte : In http://docs.python.org/dev/whatsnew/3.3.html#pep-380-syntax-for-delegating-to-a-subgenerator , two code samples -- assignee: docs@python components: Documentation messages: 157551 nosy: docs@python, ramchandra.apte priority: normal severity: nor

[issue11060] distutils2 sdist does not complain about version that is not PEP 386 compliant

2012-04-05 Thread Rik Poggi
Rik Poggi added the comment: Hi, I'd like to contribute to this bug if it's possible. I would've directly started, but it seems the situation has moved/changed a bit, so I'm not sure where the tests are needed. There's a try/except, like the one mentioned above, in pypi/dist.py. Was that a c

[issue14502] Document better what happens on releasing an unacquired lock

2012-04-05 Thread Georg Brandl
Georg Brandl added the comment: Ah, and I missed that apparently on 3.3, _thread.Error is aliased to RuntimeError. In that case you should use RuntimeError of course :) -- ___ Python tracker

[issue14502] Document better what happens on releasing an unacquired lock

2012-04-05 Thread Georg Brandl
Georg Brandl added the comment: What different exceptions are they? Note that thread.error == _thread.error == threading.ThreadError. The docs should always use the last one (ThreadError). -- ___ Python tracker

[issue14502] Document better what happens on releasing an unacquired lock

2012-04-05 Thread Sandro Tosi
Sandro Tosi added the comment: On Thu, Apr 5, 2012 at 09:06, Georg Brandl wrote: > I agree: if we know that a ThreadError will always be raised in this > instance, we should document it as such. I've already prepared a small patch for that (every supported release has a different exception ra

[issue14492] pdeps.py has_key

2012-04-05 Thread Popa Claudiu
Popa Claudiu added the comment: Hello. Here is the new patch. There was a few more problems: 1. in process, fp wasn't closed 2. in process, m_import.match(line) >= 0 could fail if the regular expression didn't matched on that line I've included the tests, too. -- Added file: http://bu

[issue14486] Add some versionchanged notes in threading docs

2012-04-05 Thread Georg Brandl
Georg Brandl added the comment: +1. -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue14502] Document better what happens on releasing an unacquired lock

2012-04-05 Thread Georg Brandl
New submission from Georg Brandl : >From d...@python.org: """ I recently ran into a situation where I could not be certain that a lock was currently in the acquired state. I checked the documentation to determine what would happen if I attempted to release a lock that was already released, an

[issue14489] repr() function link on the built-in function documentation is incorrect

2012-04-05 Thread Georg Brandl
Georg Brandl added the comment: Shows how it's a bad thing to have a builtin function and a module of the same name :) -- nosy: +georg.brandl ___ Python tracker ___ ___

[issue14489] repr() function link on the built-in function documentation is incorrect

2012-04-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4416efeb0163 by Georg Brandl in branch '2.7': Closes #14489: correct link target. http://hg.python.org/cpython/rev/4416efeb0163 -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected status: open -> closed ___

<    1   2