[issue20830] 3.4 cherry-pick: 16f91d87ff39

2014-03-02 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- assignee: -> larry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue20839] pkgutil.get_loader throws deprecation warning due to internal deprecation

2014-03-02 Thread Armin Ronacher
New submission from Armin Ronacher: pkgutil.get_loader calls pkgutil.find_loader which calls importlib.find_loader The latter logs a deprecation warning about it being replaced by importlib.util.find_spec. This is a regression in 3.4 as far as I can see. -- keywords: 3.4regression mes

[issue20015] Allow 1-character ASCII unicode where 1-character str is required

2014-03-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Re-opened due to Python-Dev discussion http://comments.gmane.org/gmane.comp.python.devel/146057. -- resolution: invalid -> stage: committed/rejected -> patch review status: closed -> open ___ Python tracker

[issue20014] Makes array.array constructor accepts ascii-unicode typecode

2014-03-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Re-opened due to Python-Dev discussion http://comments.gmane.org/gmane.comp.python.devel/146057. -- resolution: out of date -> stage: committed/rejected -> patch review status: closed -> open ___ Python tracker <

[issue12387] IDLE save keyboard shortcut problem

2014-03-02 Thread Ned Deily
Ned Deily added the comment: See also "Modifier Keys" on the Tk Wiki: http://wiki.tcl.tk/28331 There are both deliberate and accidental platform-specific behavior differences among Tk implementations. -- nosy: +ned.deily ___ Python tracker

[issue12387] IDLE save keyboard shortcut problem

2014-03-02 Thread Westley Martínez
Westley Martínez added the comment: I know that Tk has individual states for whether or not a key is pressed with Caps Lock or Shift or other modifiers, so maybe there is a way to have the shortcuts ignore Caps Lock entirely. More info: http://stackoverflow.com/questions/665502/status-of-shif

[issue11558] Raise a more helpful exception in email.message.Message.attach after set_payload("some string")

2014-03-02 Thread Varun Sharma
Varun Sharma added the comment: Sorry :) -- Added file: http://bugs.python.org/file34273/test_email_attach_to_string_11558.patch ___ Python tracker ___ _

[issue20838] Documents disagree about release state of Python 3.3.5

2014-03-02 Thread Christian Clauss
Changes by Christian Clauss : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue15618] turtle.pencolor() chokes on unicode

2014-03-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: But there is also substantial disagreement. I will not do anything yet. -- ___ Python tracker ___ __

[issue20838] Documents disagree about release state of Python 3.3.5

2014-03-02 Thread Christian Clauss
New submission from Christian Clauss: http://python.org/download/releases/3.3.5 says that 3.3.5rc1 is current but http://docs.python.org/3.3/whatsnew/changelog.html says that 3.3.5rc2 is current and http://legacy.python.org/dev/peps/pep-0398/#id5 says that 3.3.5 should have been released two

[issue20837] Ambiguity words in base64 documentation

2014-03-02 Thread INADA Naoki
INADA Naoki added the comment: Here's patch. -- keywords: +patch Added file: http://bugs.python.org/file34272/base64.patch ___ Python tracker ___

[issue20815] ipaddress unit tests PEP8

2014-03-02 Thread Nick Coghlan
Nick Coghlan added the comment: I think there's still value in giving someone experience with the current patch development process, as well as looking for potentially genuine readability improvements. However, I also agree that automated compliance with a style guide checker can't sensibly b

[issue20837] Ambiguity words in base64 documentation

2014-03-02 Thread R. David Murray
R. David Murray added the comment: There are three different 'base64 alphabets' defined in the standard. The support for using them is via altchars. 'URL safe' and 'filename safe' are the two alternate alphabets defined in the standard, which you can see if you follow the link to the RFC. A

[issue20837] Ambiguity words in base64 documentation

2014-03-02 Thread INADA Naoki
New submission from INADA Naoki: http://docs.python.org/3/library/base64.html > The modern interface supports encoding and decoding ASCII byte string objects > using all three alphabets. What "all three alphabets" means? I think it is about *altchars*. But the sentence is too ambiguous to tran

[issue18540] imaplib.IMAP4() ends with "Name or service not known" on Fedora 18

2014-03-02 Thread Milan Oberkirch
Milan Oberkirch added the comment: According to the documentation[1] the values for host should be set to 'localhost' by default. I attached a patch that does just that. Also note, that the minimal example at the end of [1] is broken by this bug. [1]: http://docs.python.org/2/library/imaplib.h

[issue20752] Difflib should provide the option of overriding the SequenceMatcher

2014-03-02 Thread Raymond Hettinger
Raymond Hettinger added the comment: Uncle Timmy, what say you? -- assignee: -> tim.peters nosy: +rhettinger, tim.peters ___ Python tracker ___ _

[issue20815] ipaddress unit tests PEP8

2014-03-02 Thread Raymond Hettinger
Raymond Hettinger added the comment: FWIW, I consider this patch to be a waste of time and don't want to encourage more patches like it. Please focus on substantive changes like improving test coverage, adding documentation strings, etc. Applying this patch would make a microscopic improveme

[issue11558] Raise a more helpful exception in email.message.Message.attach after set_payload("some string")

2014-03-02 Thread R. David Murray
R. David Murray added the comment: You missed a PEP8 line length fix. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue20836] Pickle Nonetype

2014-03-02 Thread R. David Murray
R. David Murray added the comment: Before python 3.4, __del__ methods are problematic. During interpreter shutdown various module attributes get set to None, which is probably what is triggering the error. It is unlikely there is a Python bug here: it is a known and documented issue that mo

[issue20836] Pickle Nonetype

2014-03-02 Thread Hans Polak
New submission from Hans Polak: This simple code works, but I have two 'import pickle' lines. The none working code has one 'import pickle' outside the class definition. This raises a Nonetype error in the pickle module, in the __del__ method. I'd like to know why and I think it's a bug, or is

[issue19494] urllib2.HTTPBasicAuthHandler (or urllib.request.HTTPBasicAuthHandler) doesn't work with GitHub API v3 and similar

2014-03-02 Thread Matej Cepl
Matej Cepl added the comment: OK, so perhaps developing of tests is not such complete waste of time. And yes, I hoped that at least in terms of external API I wouldn´t introduce any change. -- ___ Python tracker _

[issue11558] Raise a more helpful exception in email.message.Message.attach after set_payload("some string")

2014-03-02 Thread Varun Sharma
Varun Sharma added the comment: I have fixed the pep8 voilations and shortened the regex as you suggested in the new patch. -- Added file: http://bugs.python.org/file34270/test_email_attach_to_string_11558.patch ___ Python tracker

[issue20828] inspect.getargspec() returns wrong answer with datetime.today.__call__()

2014-03-02 Thread mike bayer
mike bayer added the comment: I've got something like that going on right now, but am doing it in the other direction; when I look at __call__(), I only do anything with it if it passes inspect.ismethod(). Since I only want plain Python __call__() functions on plain Python objects. -

[issue11558] Raise a more helpful exception in email.message.Message.attach after set_payload("some string")

2014-03-02 Thread R. David Murray
R. David Murray added the comment: Yes, this is the right idea. A couple of comments: I'm a bit concerned that the AttributeError might catch something other than the specific error generated by this case, but since that is unlikely and in any case would be revealed by the chained traceback, I

[issue20835] (9-(9%2)

2014-03-02 Thread Stefan Krah
Stefan Krah added the comment: No error here. -- nosy: +skrah resolution: -> invalid status: open -> closed ___ Python tracker ___ __

[issue19494] urllib2.HTTPBasicAuthHandler (or urllib.request.HTTPBasicAuthHandler) doesn't work with GitHub API v3 and similar

2014-03-02 Thread R. David Murray
R. David Murray added the comment: This is something Python should deal with, so the issue should remain open. Whether it is a feature or a bug is still open to at least a little bit of debate. This is particularly the case in this instance because the reason these sites are breaking the spe

[issue20828] inspect.getargspec() returns wrong answer with datetime.today.__call__()

2014-03-02 Thread Yury Selivanov
Yury Selivanov added the comment: OK, I see. I'd recommend you to take a look how inspect.signature is implemented in 3.3 or 3.4 (and maybe backport it to python 2 and use the new API). To quickly fix your code, I'd suggest the following modifications: _WrapperDescriptor = type(type.__call__)

[issue20568] Pass --default-install to ensurepip in the Windows installers

2014-03-02 Thread Nick Coghlan
Nick Coghlan added the comment: Thanks Martin - my apologies for retyping the change (and introducing the error) rather than just applying the patch (I had assumed, perhaps incorrectly, that wouldn't apply cleanly due to the UAC changes, but obviously didn't properly check the retyped version aga

[issue20835] (9-(9%2)

2014-03-02 Thread gcx11
New submission from gcx11: Hello! Is it error? Write into console: (9-(9%2) -- messages: 212589 nosy: gcx11 priority: normal severity: normal status: open title: (9-(9%2) versions: Python 3.3 ___ Python tracker ___

[issue15618] turtle.pencolor() chokes on unicode

2014-03-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: The pronouncement on pydev is that this is a bugfix because the input are meant to be text and not specifically binary. -- ___ Python tracker _

[issue20824] setup.py install doesn't parse spaces in path

2014-03-02 Thread Ned Deily
Ned Deily added the comment: Thanks for noticing the duplicate. I suggest adding yourself to the nosy list of Issue4508 and commenting there if you'd like to help things along. -- nosy: +ned.deily resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder

[issue15618] turtle.pencolor() chokes on unicode

2014-03-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: The particular error message is an artifact of 'red' having 3 letters, so that r,g,b = 'red' 'works'. turtle.pencolor(u'blue') raises turtle.TurtleGraphicsError: bad color arguments: blue. In general, 'solves the problem' is a bit vague. In this case, it should

[issue20828] inspect.getargspec() returns wrong answer with datetime.today.__call__()

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

[issue14512] Pydocs module docs server not working on Windows.

2014-03-02 Thread Martin v . Löwis
Martin v. Löwis added the comment: FTR: the server itself works fine for me. I don't see an empty window, but the proper library index. Terry, if the issue persists for you even after the change to pydoc -b, please submit *another* issue. -- ___ Pyt

[issue14512] Pydocs module docs server not working on Windows.

2014-03-02 Thread Martin v . Löwis
Martin v. Löwis added the comment: cherry-picking request in Issue20834. I will personally not backport this to 3.3. -- resolution: -> fixed status: open -> closed ___ Python tracker _

[issue20834] 3.4 cherry-pick: de81e0fe4905

2014-03-02 Thread Martin v . Löwis
New submission from Martin v. Löwis: New changeset de81e0fe4905 by Martin v. Löwis in branch 'default': Issue #14512: Launch pydoc -b instead of pydocgui.pyw on Windows. http://hg.python.org/cpython/rev/de81e0fe4905 -- assignee: larry messages: 212583 nosy: larry, loewis priority: releas

[issue14512] Pydocs module docs server not working on Windows.

2014-03-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset de81e0fe4905 by Martin v. Löwis in branch 'default': Issue #14512: Launch pydoc -b instead of pydocgui.pyw on Windows. http://hg.python.org/cpython/rev/de81e0fe4905 -- nosy: +python-dev ___ Python tracker

[issue11558] Raise a more helpful exception in email.message.Message.attach after set_payload("some string")

2014-03-02 Thread Varun Sharma
Varun Sharma added the comment: Afer getting a lot of help from david on irc, i finally improved the patch. Now it catches AttributeError and raises TypeError for non-object types in attach function. -- Added file: http://bugs.python.org/file34269/test_email_attach_to_string.patch ___

[issue14512] Pydocs module docs server not working on Windows.

2014-03-02 Thread Martin v . Löwis
Martin v. Löwis added the comment: Nick: the menu entry currently launches tools\scripts\pydocgui.pyw, with no command line options. -- ___ Python tracker ___ __

[issue20833] scripts\pydocgui.pyw out of date

2014-03-02 Thread Martin v . Löwis
New submission from Martin v. Löwis: The script pydocgui.pyw uses pydoc.gui(), which no longer exists. Anybody removing the script also needs to remove it from msi.py (and possibly other places where it is still used). -- messages: 212579 nosy: loewis priority: normal severity: normal

[issue19494] urllib2.HTTPBasicAuthHandler (or urllib.request.HTTPBasicAuthHandler) doesn't work with GitHub API v3 and similar

2014-03-02 Thread Matej Cepl
Matej Cepl added the comment: Hmm, then I don’t care about this anymore. Solution which I won’t be able to use for couple of years doesn’t make sense to me to struggle with it. If anybody cares about python 3.5, feel free to reopen. -- resolution: -> wont fix status: open -> closed _

[issue20465] Upgrade SQLite to 3.8.3 with 3.4.0 Windows and OS X installers

2014-03-02 Thread Martin v . Löwis
Martin v. Löwis added the comment: Cherry-picking in Issue20832. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue20832] 3.4 cherry-pick: 9459f517d854

2014-03-02 Thread Martin v . Löwis
New submission from Martin v. Löwis: New changeset 9459f517d854 by Martin v. Löwis in branch 'default': Issue #20465: Update Windows installer to SQLite 3.8.3.1. http://hg.python.org/cpython/rev/9459f517d854 -- assignee: larry messages: 212576 nosy: larry, loewis priority: release blocke

[issue20465] Upgrade SQLite to 3.8.3 with 3.4.0 Windows and OS X installers

2014-03-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9459f517d854 by Martin v. Löwis in branch 'default': Issue #20465: Update Windows installer to SQLite 3.8.3.1. http://hg.python.org/cpython/rev/9459f517d854 -- ___ Python tracker

[issue20748] 3.4rc2 MSI uninstallation leaves behind ensurepip _uninstall .pyc

2014-03-02 Thread Martin v . Löwis
Martin v. Löwis added the comment: cherry-picking in Issue20831 -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue20831] 3.4 cherry-pick: 7b3c40510a08

2014-03-02 Thread Martin v . Löwis
New submission from Martin v. Löwis: New changeset 7b3c40510a08 by Martin v. Löwis in branch 'default': Issue #20748: Uninstalling pip does not leave behind the pyc of http://hg.python.org/cpython/rev/7b3c40510a08 -- assignee: larry messages: 212573 nosy: larry, loewis priority: release

[issue20748] 3.4rc2 MSI uninstallation leaves behind ensurepip _uninstall .pyc

2014-03-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7b3c40510a08 by Martin v. Löwis in branch 'default': Issue #20748: Uninstalling pip does not leave behind the pyc of http://hg.python.org/cpython/rev/7b3c40510a08 -- nosy: +python-dev ___ Python tracker

[issue20568] Pass --default-install to ensurepip in the Windows installers

2014-03-02 Thread Martin v . Löwis
Martin v. Löwis added the comment: cherry-picking in issue20830 -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue20830] 3.4 cherry-pick: 16f91d87ff39

2014-03-02 Thread Martin v . Löwis
New submission from Martin v. Löwis: New changeset 16f91d87ff39 by Martin v. Löwis in branch 'default': Issue #20568: Fix typo in pip option. http://hg.python.org/cpython/rev/16f91d87ff39 -- messages: 212570 nosy: larry, loewis priority: release blocker severity: normal status: open titl

[issue20568] Pass --default-install to ensurepip in the Windows installers

2014-03-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 16f91d87ff39 by Martin v. Löwis in branch 'default': Issue #20568: Fix typo in pip option. http://hg.python.org/cpython/rev/16f91d87ff39 -- ___ Python tracker

[issue20828] inspect.getargspec() returns wrong answer with datetime.today.__call__()

2014-03-02 Thread mike bayer
mike bayer added the comment: we basically need to be able to get the argument signature for anything that passes callable(); function, method, class, object with __call__. So this is the logic we use: import inspect def get_callable_argspec(fn): if inspect.isfunction(fn) or inspect.isme

[issue20568] Pass --default-install to ensurepip in the Windows installers

2014-03-02 Thread Martin v . Löwis
Martin v. Löwis added the comment: Unfortunately, the patch was incorrect. The option is called --default-pip, not --default-install (the patch had it right, but the committed change is wrong). As a consequence, the installer currently completely fails, as the unrecognized option causes a roll

[issue20786] inspect.getargspec() returns wrong answer with property.__delete__()

2014-03-02 Thread Yury Selivanov
Yury Selivanov added the comment: Mike, this is now fixed. I've created an issue for tracking of getting this fix in 3.4.0: #20829. Thanks for finding this bug! -- ___ Python tracker _

[issue20829] 3.4 cherry pick: c9861ec8754c Fix signatures for dict.__delitem__ and property.__delete__

2014-03-02 Thread Yury Selivanov
New submission from Yury Selivanov: http://hg.python.org/cpython/rev/c9861ec8754c changeset: 89461:c9861ec8754c user:Yury Selivanov date:Sun Mar 02 12:25:27 2014 -0500 summary: Issue #20786: Fix signatures for dict.__delitem__ and property.__delete__ -- assignee: lar

[issue20786] inspect.getargspec() returns wrong answer with property.__delete__()

2014-03-02 Thread Yury Selivanov
Changes by Yury Selivanov : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue20786] inspect.getargspec() returns wrong answer with property.__delete__()

2014-03-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset c9861ec8754c by Yury Selivanov in branch 'default': Issue #20786: Fix signatures for dict.__delitem__ and property.__delete__ http://hg.python.org/cpython/rev/c9861ec8754c -- nosy: +python-dev ___ Python

[issue20828] inspect.getargspec() returns wrong answer with datetime.today.__call__()

2014-03-02 Thread Yury Selivanov
Yury Selivanov added the comment: Why are you trying to get signature of 'datetime.datetime.today.__call__'? __call__ in this case is a generic python object -- method-wrapper. It is used to make a classmethod. And the signature that getargspec is returning for it is correct. -- nosy:

[issue20828] inspect.getargspec() returns wrong answer with datetime.today.__call__()

2014-03-02 Thread Yury Selivanov
Changes by Yury Selivanov : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue20828] inspect.getargspec() returns wrong answer with datetime.today.__call__()

2014-03-02 Thread mike bayer
mike bayer added the comment: I've also worked around this on my end, so if my poking into today.__call__() isn't really a good idea anyway, I'm not doing that anymore. -- ___ Python tracker __

[issue15618] turtle.pencolor() chokes on unicode

2014-03-02 Thread Chris Angelico
Chris Angelico added the comment: Presumably this is not an issue in 3.x. Is this considered a bug fix (in which case the patch should almost certainly be applied - it looks perfectly safe), or a feature enhancement (in which case this should get closed wontfix)? Looks like low-hanging fruit.

[issue14995] PyLong_FromString documentation should state that the string must be null-terminated

2014-03-02 Thread Chris Angelico
Chris Angelico added the comment: Patch doesn't apply to current Python trunk (18 months later). Do you know what version you wrote this against? The current wording is different. -- nosy: +Rosuav ___ Python tracker

[issue20825] containment test for "ip_network in ip_network"

2014-03-02 Thread Antoine Pitrou
Antoine Pitrou added the comment: > However, 'in' is already used for in , and you can > already get subnets out of a network (via 'subnets'), so it isn't > completely crazy to consider the network a container of subnets (of > varying sizes, depending on the arguments to subnet). So how about s

[issue20828] inspect.getargspec() returns wrong answer with datetime.today.__call__()

2014-03-02 Thread R. David Murray
Changes by R. David Murray : -- nosy: +larry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue20825] containment test for "ip_network in ip_network"

2014-03-02 Thread R. David Murray
R. David Murray added the comment: It seems from the ipaddress documentation that 'a.contains(b)' would appropriate. But to avoid confusion with 'in', you could say a.covers(b). However, 'in' is already used for in , and you can already get subnets out of a network (via 'subnets'), so it isn

[issue20786] inspect.getargspec() returns wrong answer with property.__delete__()

2014-03-02 Thread mike bayer
mike bayer added the comment: see also http://bugs.python.org/issue20828 as it seems like there might be a bigger pattern here (not sure). -- ___ Python tracker ___

[issue20828] inspect.getargspec() returns wrong answer with datetime.today.__call__()

2014-03-02 Thread mike bayer
New submission from mike bayer: this appears like it may be related to http://bugs.python.org/issue20786, at least in terms of inspect.getargspec() seems to be returning answers in 3.4 where it used to raise TypeError, however like in 20786 it's again returning the wrong answer. I'm a little

[issue20827] IDLE : Display function argument list in ClassBrowser

2014-03-02 Thread Saimadhav Heblikar
New submission from Saimadhav Heblikar: The proposed patch 1.implements a TODO for ClassBrowser . it was (sic)show function argument list? (have to do pattern matching on source).my patch does not do pattern matching in the real sense of the phrase.it uses "imp" to import the module source and

[issue5626] misleading comment in socket.gethostname() documentation

2014-03-02 Thread Chris Angelico
Chris Angelico added the comment: Python doesn't currently have any sort of function for fetching all a computer's IPs, as far as I know, but if there is one (either now or in the future), it would be good to link to that from there. "Here's how to get your host name. And if you're interested,

[issue20826] Faster implementation to collapse consecutive ip-networks

2014-03-02 Thread Michel Albert
New submission from Michel Albert: This alternative implementation runs over the ``addresses`` collection only once, and "backtracks" only if necessary. Inspired by a "shift-reduce" approach. Technically both are O(n), so the best case is always the same. But the old implementation runs over t

[issue20825] containment test for "ip_network in ip_network"

2014-03-02 Thread Michel Albert
Michel Albert added the comment: Hmm... after thinking about this, I kind of agree. I was about to state something about the fact that you could consider networks like an "ordered set". And use that to justify my addition :) But the more I think about it, the more I am okay with your point. I

[issue20825] containment test for "ip_network in ip_network"

2014-03-02 Thread Antoine Pitrou
Antoine Pitrou added the comment: I don't think "in" is the right operator for this. You can draw an analogy with sets: >>> a = {1,2} >>> b = {1,2,3} >>> a <= b True >>> a in b False In mathematical terms, there is a difference between inclusion (being a subset of) and containment (being an e

[issue20825] containment test for "ip_network in ip_network"

2014-03-02 Thread Michel Albert
New submission from Michel Albert: The ipaddress module always returns ``False`` when testing if a network is contained in another network. However, I feel this should be a valid test. No? Is there any reason why this is fixed to ``False``? In case not, here's a patch which implements this tes

[issue20824] setup.py install doesn't parse spaces in path

2014-03-02 Thread Alexandru Gheorghe
Alexandru Gheorghe added the comment: Hmm, sorry, this seems to be a duplicate of issue4508 [ http://bugs.python.org/issue4508 ] Should we close this as duplicate or keep it for further reference? -- ___ Python tracker

[issue20824] setup.py install doesn't parse spaces in path

2014-03-02 Thread Alexandru Gheorghe
New submission from Alexandru Gheorghe: When having spaces in the path which represents the root for the build on going, rpmbuild from bdist_rpm will fail: + python setup.py install -O1 --root=/home/lex/Development/4. Test/11. ARTA/build/sr

[issue20815] ipaddress unit tests PEP8

2014-03-02 Thread Michel Albert
Michel Albert added the comment: Here's a new patch which addresses white-space issues without touching the old tests. -- Added file: http://bugs.python.org/file34265/test_ipaddress_pep8-r3.patch ___ Python tracker

[issue20822] WINhelp file loads Table of Contents, but not contents: "Navigation to webpage cancelled"

2014-03-02 Thread Martin v . Löwis
Martin v. Löwis added the comment: I cannot reproduce this. The file opens just fine for me, with no box being opened, on Windows 7. Are you opening the file on a network drive, by any chance? Then http://stackoverflow.com/questions/11438634/opening-a-chm-file-produces-navigation-to-the-webpag

[issue20752] Difflib should provide the option of overriding the SequenceMatcher

2014-03-02 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue20728] Remove unused import from base64

2014-03-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: Nor in 3.3. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed versions: -Python 3.3 ___ Python tracker ___

[issue20728] Remove unused import from base64

2014-03-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset d3732760e3d6 by Terry Jan Reedy in branch 'default': Closes issue #20728: Remove unused import added in rev 42366e293b7b and http://hg.python.org/cpython/rev/d3732760e3d6 -- nosy: +python-dev ___ Python t

[issue20728] Remove unused import from base64

2014-03-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: Import is not present in 2.7. -- assignee: -> terry.reedy nosy: +terry.reedy stage: -> commit review type: -> resource usage versions: +Python 3.3, Python 3.4 -Python 3.5 ___ Python tracker

[issue16525] wave file module does not support 32bit float format

2014-03-02 Thread Sebastian Kraft
Sebastian Kraft added the comment: After the last changes in the development version of python 3.4 the patch cannot be applied anymore. As the the other audio file readers and the wave module share a common API it may be not desireable to simply enhance the wave module with support for floatin

[issue20823] Clarify copyreg.pickle() documentation

2014-03-02 Thread Peter Otten
Changes by Peter Otten <__pete...@web.de>: -- keywords: +patch Added file: http://bugs.python.org/file34263/copyreg.patch ___ Python tracker ___ _

[issue20823] Clarify copyreg.pickle() documentation

2014-03-02 Thread Peter Otten
New submission from Peter Otten: The documentation for copyreg.pickle(type, function, constructor=None) has the sentence "TypeError will be raised if *object* is a class or *constructor* is not callable." It's not clear to me what "object" refers to. I believe it refers to the first arg (c

[issue19494] urllib2.HTTPBasicAuthHandler (or urllib.request.HTTPBasicAuthHandler) doesn't work with GitHub API v3 and similar

2014-03-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: Let me revise what i said: This looks like a feature addition so I would not decide to treat it like a bug unless someone persuasively argues that current behavior violates the promise in the doc. -- type: -> enhancement versions: +Python 3.5 -Python

[issue20719] testPythonOrg() of test_robotparser fails with the new www.python.org website

2014-03-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 540ce9bb19e8 by Georg Brandl in branch '3.3': #20719: Disable the robotparser python.org test until the gzip encoding issue can be sorted. http://hg.python.org/cpython/rev/540ce9bb19e8 -- nosy: +python-dev _

[issue19619] Blacklist base64, hex, ... codecs from bytes.decode() and str.encode()

2014-03-02 Thread Georg Brandl
Georg Brandl added the comment: Both this backport and #20404 will make it into 3.3.5rc2. -- ___ Python tracker ___ ___ Python-bugs-li

[issue20404] Delayed exception using non-text encodings with TextIOWrapper

2014-03-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 140a69d950eb by Georg Brandl in branch '3.3': Issue #20404: reject non-text encodings early in TextIOWrapper. http://hg.python.org/cpython/rev/140a69d950eb -- ___ Python tracker

[issue19619] Blacklist base64, hex, ... codecs from bytes.decode() and str.encode()

2014-03-02 Thread Georg Brandl
Georg Brandl added the comment: This is fixed now, right? -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ P