[issue17159] Remove explicit type check from inspect.Signature.from_function()

2014-02-22 Thread Stefan Behnel
Stefan Behnel added the comment: I tested it and it works, so I could take the simple route now and say "yes, it fixes the problem", but it's actually no longer required because I already added a "__signature__" property to Cython's functions. However, as Yury noted, that's a hack because insp

[issue20679] 3.4 cherry-pick: 587fd4b91120 improve Enum subclass behavior

2014-02-22 Thread Ethan Furman
Ethan Furman added the comment: Thanks, Larry. I'll have one more patch which will be much better comments in the code, and a small doc enhancement. When it's ready should I reopen this issue or create a new one? -- ___ Python tracker

[issue19997] imghdr.what doesn't accept bytes paths

2014-02-22 Thread Claudiu.Popa
Claudiu.Popa added the comment: Patch updated. It removes the check added in http://hg.python.org/cpython/rev/94813eab5a58 and simplifies the test for bytes file path. -- Added file: http://bugs.python.org/file34181/imghdr_bytes_2.patch ___ Python t

[issue20727] Improved roundrobin itertools recipe

2014-02-22 Thread Ned Deily
Changes by Ned Deily : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue20728] Remove unused import from base64

2014-02-22 Thread Claudiu.Popa
New submission from Claudiu.Popa: base64 imports `itertools`, but doesn't use it at all. -- components: Library (Lib) files: base64_remove_unused_import.patch keywords: patch messages: 211917 nosy: Claudiu.Popa priority: normal severity: normal status: open title: Remove unused import fr

[issue20727] Improved roundrobin itertools recipe

2014-02-22 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: -> patch review versions: -Python 3.1, Python 3.2, Python 3.5 ___ Python tracker ___ ___ Pytho

[issue20726] inspect: Make Signature instances picklable

2014-02-22 Thread Antoine Pitrou
Antoine Pitrou added the comment: For extra points, you could test with all protocol versions (from 0 to HIGHEST_PROTOCOL). -- nosy: +pitrou ___ Python tracker ___ _

[issue19997] imghdr.what doesn't accept bytes paths

2014-02-22 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +serhiy.storchaka stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue20641] Python installer needs elevated rights to install pip

2014-02-22 Thread Martin v . Löwis
Martin v. Löwis added the comment: I managed to reproduce the problem. It happens (for me) when installing into c:\program files (or \program files (x86)). I'll look into fixing it. -- ___ Python tracker _

[issue20729] mailbox.Mailbox does odd hasattr() check

2014-02-22 Thread Chris Angelico
New submission from Chris Angelico: Only noticed because I was searching the stdlib for hasattr calls, but in mailbox.Mailbox.update(), a check is done thus: if hasattr(arg, 'iteritems'): source = arg.items() elif hasattr(arg, 'items'): source = arg.items

[issue9291] mimetypes initialization fails on Windows because of non-Latin characters in registry

2014-02-22 Thread Michał Pasternak
Michał Pasternak added the comment: I just hit this bug on 2.7.6, running on polish WinXP (I need to build some packages there, I hope I'll avoid a nasty py2exe bug). Any reasons this is not fixed yet? Do you need any assistance? -- nosy: +Michał.Pasternak

[issue20628] Improve doc for csv.DictReader 'fieldnames' parameter

2014-02-22 Thread Roger Erens
Roger Erens added the comment: One more nitpick: is it the sequence [of keys] that identif_ies_ the order, or is it the keys that identif_y_ the order? Not being a native English speaker, I'd opt for the first choice. Thank you both for your meticulous attention for details! -- __

[issue20653] Pickle enums by name

2014-02-22 Thread Eli Bendersky
Eli Bendersky added the comment: Can you upload the new patch? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue20218] Add `pathlib.Path.write` and `pathlib.Path.read`

2014-02-22 Thread Ram Rachum
Ram Rachum added the comment: Any progress on this? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue20641] Python installer needs elevated rights to install pip

2014-02-22 Thread Mark Lawrence
Mark Lawrence added the comment: FTR I was referring to Terry's comment that there's "no pip.xxx in c:/windows". Pleased to see you have it sussed :) -- ___ Python tracker ___

[issue20632] Define a new __key__ protocol

2014-02-22 Thread Nick Coghlan
Nick Coghlan added the comment: I suspect it could just be a class decorator (along the lines of total_ordering), and it should certainly be prototyped on PyPI as such a decorator (using a different name for the key calculating method). If it eventually happened, elevation to a core protocol woul

[issue20730] Typo in idlelib.GrepDialog

2014-02-22 Thread Claudiu.Popa
New submission from Claudiu.Popa: There is a typo in idlelib.GrepDialog.findfiles: OSerror instead of OSError. -- components: IDLE files: idle_typo.patch keywords: patch messages: 211927 nosy: Claudiu.Popa priority: normal severity: normal status: open title: Typo in idlelib.GrepDialog v

[issue20641] Python installer needs elevated rights to install pip

2014-02-22 Thread Patrick Westerhoff
Patrick Westerhoff added the comment: Hey all, yes, I indeed try to install Python into `C:\Program Files\`. I’m doing that on Windows 8.1 64bit with an Administrator account (which doesn’t matter though) with standard UAC (which only asks when applications make changes to the computer settin

[issue20653] Pickle enums by name

2014-02-22 Thread Ethan Furman
Changes by Ethan Furman : Added file: http://bugs.python.org/file34185/issue20653.stoneleaf.03.patch ___ Python tracker ___ ___ Python-bugs-li

[issue20724] 3.4 cherry-pick: d6aa3fa646e2 inspect.signature: Check for function-like objects before builtins

2014-02-22 Thread Yury Selivanov
Yury Selivanov added the comment: Thanks, Larry! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue20726] inspect: Make Signature instances picklable

2014-02-22 Thread Yury Selivanov
Yury Selivanov added the comment: > For extra points, you could test with all protocol versions (from 0 to > HIGHEST_PROTOCOL). Good idea, see the second patch. -- Added file: http://bugs.python.org/file34186/sig_picklable_02.patch ___ Python tracke

[issue9291] mimetypes initialization fails on Windows because of non-Latin characters in registry

2014-02-22 Thread Martin v . Löwis
Martin v. Löwis added the comment: Michał: Can you please report the exact registry key and value that is causing the problem? It's difficult to test a patch if one is not able to reproduce the problem. Of the patches suggested: does any of them fix the problem for you? If so, which one? I p

[issue9291] mimetypes initialization fails on Windows because of non-Latin characters in registry

2014-02-22 Thread Daniel Szoska
Daniel Szoska added the comment: Martin: I had the same problem after upgrading to 2.7.6. System here: German XP 32 Bit I used the solution from Alexandr with sitecustomize.py (with cp1252) and it works fine for me. -- ___ Python tracker

[issue20484] calling pydoc.Helper()('modules') in the test suite sometimes causes failures

2014-02-22 Thread Eric Snow
Eric Snow added the comment: TL;DR new tests (improving coverage) uncovered existing "bugs". We should probably disable the tests for now. I'm glad you found this. Out of curiosity, how often do you run the test suite against a clean checkout? Typically I only run it out of the same "tainte

[issue9291] mimetypes initialization fails on Windows because of non-Latin characters in registry

2014-02-22 Thread Michał Pasternak
Michał Pasternak added the comment: Another REG file, encoded with CP1250, I believe. -- Added file: http://bugs.python.org/file34188/issue9291-key.reg ___ Python tracker ___

[issue9291] mimetypes initialization fails on Windows because of non-Latin characters in registry

2014-02-22 Thread Michał Pasternak
Michał Pasternak added the comment: Martin: the problematic key is "[HKEY_CLASSES_ROOT\BDATuner.Składniki]". I am pasting its name, because I suppose, that as bugs.python.org is utf-8, special characters will be pasted properly. Included you will find a .REG file, which is Windows Registry Edi

[issue9291] mimetypes initialization fails on Windows because of non-Latin characters in registry

2014-02-22 Thread Michał Pasternak
Michał Pasternak added the comment: As for the fix, sitecustomize.py works for me, too, but I somehow believe, that adding sitecustomize.py for new Python installations would propably do more harm than good. I'll check those 2 patches and I'll let you know. --

[issue20641] Python installer needs elevated rights to install pip

2014-02-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am installing into C:/Programs, so the problem is not specific to 'Program Files', with a space. -- ___ Python tracker ___ __

[issue9291] mimetypes initialization fails on Windows because of non-Latin characters in registry

2014-02-22 Thread Michał Pasternak
Michał Pasternak added the comment: 9291.patch works for me too, but I am unsure about its idea. Silently ignoring non-ASCII registry entries - does it sound like a good idea? Maybe. Is it pythonic? I doubt so. I don't exactly understand what 9291a.patch is doing. For me it does look like a

[issue20729] mailbox.Mailbox does odd hasattr() check

2014-02-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Actually it should be iteritems(). This is meant to support Mailbox, which has both iteritems() and items() methods. iteritems() returns an iterator and items() returns a list. Looks as changeset f340cb045bf9 was incorrectly applied to mailbox. Here is a pat

[issue19997] imghdr.what doesn't accept bytes paths

2014-02-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I'm not sure imghdr.what() should support bytes path. The open() builtin, most os and os.path functions support string and bytes paths, but many other modules (including pathlib) support only string paths. -- nosy: +pitrou __

[issue20648] 3.4 cherry-pick: multiple changesets for asyncio

2014-02-22 Thread Larry Hastings
Larry Hastings added the comment: Can I close this issue now? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20731] Python 3.3.4: SyntaxError with correct source code encoding # -*- coding: latin-1 -*-

2014-02-22 Thread OPi
New submission from OPi: The test program: #!/usr/bin/env python # -*- coding: latin-1 -*- print('test') is correct in Python 3.3.3, but cause this error with Python 3.3.4: File "./test.py", line 3 - ^ SyntaxError: invalid syntax I use Windows 7, with bash (of Cygwin) and Python 3.3.

[issue20199] status of module_for_loader and utils._module_to_load

2014-02-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8f54f601fd75 by R David Murray in branch 'default': whatsnew: importlib deprecations. http://hg.python.org/cpython/rev/8f54f601fd75 -- nosy: +python-dev ___ Python tracker

[issue20199] status of module_for_loader and utils._module_to_load

2014-02-22 Thread R. David Murray
R. David Murray added the comment: I just committed a fix for the importlib deprecations entry, based on the deprecation notes in the docs. There are quite a few methods deprecated in 3.4 because of modulespec, but only a few *sorts* of methods. One possible anomaly (though it looks intention

[issue20484] calling pydoc.Helper()('modules') in the test suite sometimes causes failures

2014-02-22 Thread Vinay Sajip
Vinay Sajip added the comment: > Any objections before I disable those 3 tests? Not from me. In case I was added to nosy because of logging - AFAICT, test_pydoc is not cleaning up after itself, and one of the problems is a logger which is created / added but not removed / closed. --

[issue20653] Pickle enums by name

2014-02-22 Thread Ethan Furman
Changes by Ethan Furman : Added file: http://bugs.python.org/file34191/issue20653.stoneleaf.04.patch ___ Python tracker ___ ___ Python-bugs-li

[issue20403] Idle options dialog: add help

2014-02-22 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: This patch brings back the help button to idle config dialog. It uses regex to "get" the correct section from the help.txt file(the same file used to display IDLE help). To make it more useful,i have added few help sentences to each of the tabs present in t

[issue11588] Add "necessarily inclusive" groups to argparse

2014-02-22 Thread paul j3
paul j3 added the comment: This is an example of using 'patch_w_mxg2.diff' to handle the inclusive group case proposed by the OP. Since 'seen_non_default_actions' (and 'seen_actions') is a set of 'Actions', it is convenient to use 'set' methods with pointers to the actions that a collected du

[issue20484] calling pydoc.Helper()('modules') in the test suite sometimes causes failures

2014-02-22 Thread Ned Deily
Ned Deily added the comment: I concur: let's disable the tests for now. If we can do a quick patch and request a cherry pick from Larry, we can still get this into 3.4.0. To answer your question, Eric, I normally run tests from a clean, installed location as part of OS X installer testing an

[issue20732] Custom logging formatter doesnt work in 3.3.4

2014-02-22 Thread Derek Wallace
New submission from Derek Wallace: Hi, I use the logging module and have created a custom formatter to format the log messages different for each logging level. This was developed with 3.3.3. When i upgraded to 3.3.4 it no longer worked. I got the error TypeError: 'tuple' object is not callable

[issue20733] Typo in itertools docs - "itertool-functions"

2014-02-22 Thread Elazar Gershuni
New submission from Elazar Gershuni: typo - should be "itertools-functions" instead of "itertool-functions" http://docs.python.org/3.4/library/itertools.html#itertool-functions -- assignee: docs@python components: Documentation messages: 211950 nosy: docs@python, elazar priority: normal

[issue20729] mailbox.Mailbox does odd hasattr() check

2014-02-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: You have opened the door on a slight mess. The mailbox module provides a set + dict interface to on-disk mailbax files in various formats. The hg annotate and revision history commands indicate that most of 3.4 mailbox is unchanged since the trunk version was

[issue20128] Re-enable test_modules_search_builtin() in test_pydoc

2014-02-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset 13edfab6c3c0 by Eric Snow in branch 'default': Issue #20484: Disable the 2 remaining "modules" tests in test_pydoc. http://hg.python.org/cpython/rev/13edfab6c3c0 -- nosy: +python-dev ___ Python tracker <

[issue20484] calling pydoc.Helper()('modules') in the test suite sometimes causes failures

2014-02-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset 13edfab6c3c0 by Eric Snow in branch 'default': Issue #20484: Disable the 2 remaining "modules" tests in test_pydoc. http://hg.python.org/cpython/rev/13edfab6c3c0 -- nosy: +python-dev ___ Python tracker <

[issue20732] Custom logging formatter doesnt work in 3.3.4

2014-02-22 Thread Ned Deily
Changes by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue20128] Re-enable test_modules_search_builtin() in test_pydoc

2014-02-22 Thread Eric Snow
Eric Snow added the comment: The other two test_modules* tests in test_pydoc are also having issues and I've likewise disabled them (see issue20484). They'll need to be investigated and re-enabled too. -- ___ Python tracker

[issue20484] calling pydoc.Helper()('modules') in the test suite sometimes causes failures

2014-02-22 Thread Eric Snow
Eric Snow added the comment: I've disabled 2 of the 3 tests (the other was already disabled for issue20123). I'll pick up re-enabling the tests in issue20128. Thanks again, Ned, for finding this. (mental note: stay away from pydoc!] -- resolution: -> fixed stage: needs patch -> comm

[issue20484] calling pydoc.Helper()('modules') in the test suite sometimes causes failures

2014-02-22 Thread Ned Deily
Ned Deily added the comment: Thanks for looking into it, Eric. Can you open a 3.4 cherry-pick issue for this so it gets into 3.4.0? -- ___ Python tracker ___ __

[issue20734] 3.4 cherry-pick: 13edfab6c3c0 disable 2 pydoc tests

2014-02-22 Thread Eric Snow
New submission from Eric Snow: New changeset 13edfab6c3c0 by Eric Snow in branch 'default': Issue #20484: Disable the 2 remaining "modules" tests in test_pydoc -- assignee: larry messages: 211957 nosy: eric.snow, larry, ned.deily priority: release blocker severity: normal stage: commit r

[issue20484] calling pydoc.Helper()('modules') in the test suite sometimes causes failures

2014-02-22 Thread Eric Snow
Eric Snow added the comment: I've opened issue20734 for the 3.4.0 cherry-pick. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue20729] mailbox.Mailbox does odd hasattr() check

2014-02-22 Thread Peter Otten
Peter Otten added the comment: Do you expect many use cases that rely on items(), keys(), and values() being lists? Maybe it would be acceptable to make these lazy in 3.5, but keep the iterXXX() variants as aliases indefinitely. -- nosy: +peter.otten _

[issue20729] mailbox.Mailbox does odd hasattr() check

2014-02-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Note that there is a difference between Mailbox and dict interface: __iter__() iterates over values, not keys. clear() should use keys(), not iterkeys(), because it modifies iterated dict. -- ___ Python tracker <

[issue20731] Python 3.3.4: SyntaxError with correct source code encoding # -*- coding: latin-1 -*-

2014-02-22 Thread R. David Murray
R. David Murray added the comment: For whatever it's worth, it works fine for me on 3.3 tip on unix. The fact that it says line 3 and shows just a - is suspicious. -- nosy: +r.david.murray ___ Python tracker

[issue20733] Typo in itertools docs - "itertool-functions"

2014-02-22 Thread R. David Murray
R. David Murray added the comment: I'm not sure there's a problem here. Calling the section "Itertool Functions" is a matter of choice of English phrasing. And given that the section is called that, the label is parallel to it (and in any case is an internal matter). -- nosy: +r.dav

[issue20733] Typo in itertools docs - "itertool-functions"

2014-02-22 Thread Elazar Gershuni
Elazar Gershuni added the comment: "itertools" is not English, but the name of the Python library. So it is not plural, and not a matter of choice of English phrasing. In addition, as a section name, it should be "Functions" with a capital F, just like "Itertools Recipes" down there. http://do

[issue20735] Documentation: mark stringprep as deprecated

2014-02-22 Thread abcdef
New submission from abcdef: This is a nitpick, but the documentation is not clear whether the stringprep module is deprecated or not. It is listed as "Deprecated" on http://docs.python.org/3.3/py-modindex.html#cap-s but there's no information on http://docs.python.org/3.3/library/stringprep.ht

[issue20736] test_socket: testSendmsgDontWait needlessly skipped on Linux

2014-02-22 Thread David Watson
New submission from David Watson: In test_socket, the decorator on SendmsgStreamTests.testSendmsgDontWait still checks for the old sys.platform value of "linux2", with the result that the test is always skipped, when in fact the test is for a Linux facility. Patch attached for 3.3 and above.

[issue20737] 3.3 _thread lock.acquire() timeout and threading.Event().wait() do not wake for certain values on Windows

2014-02-22 Thread raruler
New submission from raruler: I've tried this with both the 32-bit and 64-bit versions of 3.3.4 on two Windows 7 x64 machines. threading.Event().wait(2148) and a lock obtained from _thread used as lock.acquire(True, 2148) will never return. Anything under 2148 seems to work just fine, but any

[issue20669] OpenBSD: socket.recvmsg tests fail with OSError: [Errno 40] Message too long

2014-02-22 Thread David Watson
David Watson added the comment: > I opened the issue #20718 to track the "FD pass" failures. But the failures in the current issue *all* involve FD passing :) The "Message too long" errors are in tests where the ancillary data (in this case file descriptors) is truncated, rather than the norma

[issue20737] 3.3 _thread lock.acquire() timeout and threading.Event().wait() do not wake for certain values on Windows

2014-02-22 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +brian.curtin, tim.golden versions: +Python 3.4 ___ Python tracker ___ ___ Python-bugs-list maili

[issue20641] Python installer needs elevated rights to install pip

2014-02-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7b80f57f904e by Martin v. Löwis in branch 'default': Issue #20641: Run custom actions with the NoImpersonate flag to support UAC. http://hg.python.org/cpython/rev/7b80f57f904e -- nosy: +python-dev ___ Pyt

[issue20732] Custom logging formatter doesnt work in 3.3.4

2014-02-22 Thread Vinay Sajip
Vinay Sajip added the comment: The change was necessitated by the fix for #20242. Sorry for the inconvenience, but the fix was implemented in what seemed like the most appropriate way. Of course, _STYLES is an internal implementation detail which could change again in the future. Having expla

[issue20558] ECONNRESET value in logging.config is valid with Linux [distros]; not valid with *BSD

2014-02-22 Thread Vinay Sajip
Changes by Vinay Sajip : -- assignee: -> vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue20641] Python installer needs elevated rights to install pip

2014-02-22 Thread Martin v . Löwis
Martin v. Löwis added the comment: This is now fixed; the cherry-picking request is issue20738. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue20738] 3.4 cherry-pick: 7b80f57f904e fix 20641

2014-02-22 Thread Martin v . Löwis
New submission from Martin v. Löwis: Fix 7b80f57f904e for issue20641. -- assignee: larry messages: 211970 nosy: larry, loewis priority: release blocker severity: normal status: open title: 3.4 cherry-pick: 7b80f57f904e fix 20641 versions: Python 3.4 _

[issue20641] Python installer needs elevated rights to install pip

2014-02-22 Thread Patrick Westerhoff
Patrick Westerhoff added the comment: That’s great to hear, thanks a lot :) -- ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue20739] PEP 463 (except expression) implementation

2014-02-22 Thread Thomas Wouters
New submission from Thomas Wouters: Here is a preliminary implementation of PEP 463, minus mandatory parentheses and with the most straightforward precedence rule: equal to if-expr -- which means this: A if C else B except E: D is parsed as A if C else (B except E: D) (because of associativ

[issue20123] pydoc.synopsis fails to load binary modules

2014-02-22 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue20128] Re-enable test_modules_search_builtin() in test_pydoc

2014-02-22 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue20739] PEP 463 (except expression) implementation

2014-02-22 Thread Chris Angelico
Changes by Chris Angelico : -- nosy: +Rosuav ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue20669] OpenBSD: socket.recvmsg tests fail with OSError: [Errno 40] Message too long

2014-02-22 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue20199] status of module_for_loader and utils._module_to_load

2014-02-22 Thread Brett Cannon
Brett Cannon added the comment: The importlib.abc.FileLoader deprecation w/o exec_module() makes sense. The load_module() method simply called super().load_module() as the class is fully abstract and only provides get_filename() and get_data() for convenience. And since importlib.abc.Loader do

[issue20739] PEP 463 (except expression) implementation

2014-02-22 Thread Yury Selivanov
Changes by Yury Selivanov : -- nosy: +yselivanov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue20730] Typo in idlelib.GrepDialog

2014-02-22 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +serhiy.storchaka, terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue20735] Documentation: mark stringprep as deprecated

2014-02-22 Thread Berker Peksag
Changes by Berker Peksag : -- versions: -Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20730] Typo in idlelib.GrepDialog

2014-02-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5c366a5e4284 by Terry Jan Reedy in branch '3.3': Issue #20730: Fix typo reported by Claudiu Popa. http://hg.python.org/cpython/rev/5c366a5e4284 -- nosy: +python-dev ___ Python tracker

[issue20730] Typo in idlelib.GrepDialog

2014-02-22 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___ P

[issue20737] 3.3 _thread lock.acquire() timeout and threading.Event().wait() do not wake for certain values on Windows

2014-02-22 Thread R. David Murray
Changes by R. David Murray : -- nosy: +r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue20734] 3.4 cherry-pick: 13edfab6c3c0 disable 2 pydoc tests

2014-02-22 Thread Larry Hastings
Larry Hastings added the comment: ok. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue20734] 3.4 cherry-pick: 13edfab6c3c0 disable 2 pydoc tests

2014-02-22 Thread Larry Hastings
Changes by Larry Hastings : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue20679] 3.4 cherry-pick: 587fd4b91120 improve Enum subclass behavior

2014-02-22 Thread Larry Hastings
Larry Hastings added the comment: This issue is okay, but it helps my workflow if you'd create a new "3.4 cherry-pick" revision for me when it's ready. -- ___ Python tracker ___

[issue20199] status of module_for_loader and utils._module_to_load

2014-02-22 Thread Larry Hastings
Larry Hastings added the comment: I'll cherry-pick 8f54f601fd75. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue20738] 3.4 cherry-pick: 7b80f57f904e fix 20641

2014-02-22 Thread Larry Hastings
Larry Hastings added the comment: ok. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue20738] 3.4 cherry-pick: 7b80f57f904e fix 20641

2014-02-22 Thread Larry Hastings
Changes by Larry Hastings : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue20261] Cannot pickle some objects that have a __getattr__()

2014-02-22 Thread Larry Hastings
Larry Hastings added the comment: My understanding is, this is fixed, and cherry-picked into 3.4. If that's in error please reopen. -- resolution: -> fixed status: open -> closed ___ Python tracker _

[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-22 Thread Larry Hastings
Larry Hastings added the comment: My understanding is this is now done. If it isn't please reopen. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue16042] smtplib: unlimited readline() from connection

2014-02-22 Thread Georg Brandl
Changes by Georg Brandl : -- versions: -Python 3.3, Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20740] Remove invalid number from squares in introduction section

2014-02-22 Thread Pavel Kazakov
New submission from Pavel Kazakov: This is probably being nitpicky, but in the introduction section, the squares list include a 2: squares = [1, 2, 4, 9, 16, 25] However, 2 is not a square number (perfect square). So it should be: [1, 4, 9, 16, 25] I've included a patch that removes the 2. --

[issue20740] Remove invalid number from squares in introduction section

2014-02-22 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: docs@python -> ezio.melotti nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mai

[issue20571] test_codecs currently failing on several Windows buildbots

2014-02-22 Thread Georg Brandl
Georg Brandl added the comment: Would have been nice to do this also on 3.3 branch... -- nosy: +georg.brandl ___ Python tracker ___ __

[issue20571] test_codecs currently failing on several Windows buildbots

2014-02-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset d8f48717b74e by Victor Stinner in branch '3.3': Issue #20571: skip test_readline() of test_codecs for Windows code page 65001. http://hg.python.org/cpython/rev/d8f48717b74e -- ___ Python tracker