[issue22645] Unable to install Python 3.4.2 amd64 on Windows 8.1 Update 1

2014-10-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: I had no trouble ungrading 3.4.1 to 3.4.2 with win7 up to date with 'required' updates and most recommendedupdates. -- nosy: +terry.reedy ___ Python tracker __

[issue21228] Missing enumeration of HTTPResponse Objects methods of urllib.request.urlopen's http.client.HTTPResponse?

2014-10-18 Thread Martin Panter
Martin Panter added the comment: Is there anything else that needs doing to get this committed and resolved? My patch is just a trivial reordering of Evens’s, with about one sentence deleted. -- ___ Python tracker

[issue21991] The new email API should use MappingProxyType instead of returning new dicts.

2014-10-18 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Thanks David, -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue17095] Modules/Setup *shared* support broken

2014-10-18 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Ned, For the first point, maybe close this issue and open a new bug for the second. What do you think? -- ___ Python tracker ___ _

[issue17095] Shared modules built with Modules/Setup are not found when run from build directory

2014-10-18 Thread Ned Deily
Ned Deily added the comment: Sorry, I don't see the point of opening another issue, especially since most of the discussion in this issue has been about the second problem. I have updated the issue title to be more specific, though. -- title: Modules/Setup *shared* support broken -> S

[issue17095] Shared modules built with Modules/Setup are not found when run from build directory

2014-10-18 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Thanks Ned -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue22666] email.Header no encoding of unicode strings containing newlines

2014-10-18 Thread Flavio Grossi
New submission from Flavio Grossi: When trying to encode an email header with a newline in it, correct encoding is done only for strings and not for unicode strings. In fact, for unicode strings, encoding is only done if a non ascii character is contained in it. The attached patch should fix t

[issue13918] locale.atof documentation is missing func argument

2014-10-18 Thread Cédric Krier
Cédric Krier added the comment: A new version with unittest. -- Added file: http://bugs.python.org/file36960/delocalize.patch ___ Python tracker ___ _

[issue22648] Unable to install Python 3.4.2 amd64 on Windows 8.1

2014-10-18 Thread Steve Dower
Steve Dower added the comment: Hmm, I'm used to seeing far more detail in verbose logs than that (normally they'd be a few hundred KB). I'm sorry, I don't know how to diagnose this issue. Have you tried clearing your internet cache and downloading it again? Maybe try the 32-bit version (just

[issue22645] Unable to install Python 3.4.2 amd64 on Windows 8.1 Update 1

2014-10-18 Thread Steve Dower
Changes by Steve Dower : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue22648] Unable to install Python 3.4.2 amd64 on Windows 8.1

2014-10-18 Thread Martin v . Löwis
Martin v. Löwis added the comment: 2203 is "Cannot open database file. System error [3].", with -2147287037 being 0x80030003, which in turn is STG_E_PATHNOTFOUND. Could it be that C:\Users\pierre\Doocuments\python-3.4.2.amd64.msi is on a SUBSTed drive? Installer does not support installing fr

[issue22664] IDLE: Standard output and error from multiprocessing vanishes

2014-10-18 Thread ppperry
Changes by ppperry : -- nosy: +kbk, roger.serwy, terry.reedy -ppperry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue13918] locale.atof documentation is missing func argument

2014-10-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks for the updated patch, Cédric. Just some remarks: - the documentation should mention that the return value is still a string - the documentation needs a "versionadded" marker next to the new function - have you already signed the contributor's agreement?

[issue22664] IDLE: Standard output and error from multiprocessing vanishes

2014-10-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is a duplicate of issue11820. -- nosy: +serhiy.storchaka resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> idle3 shell os.system swallows shell command output ___ Python track

[issue22648] Unable to install Python 3.4.2 amd64 on Windows 8.1

2014-10-18 Thread eryksun
eryksun added the comment: > MSI (c) (C4:24) [08:42:21:565]: Note: 1: 2203 2: > C:\Users\pierre\Doocuments\python-3.4.2.amd64.msi 3: > -2147287037 "Doocuments" is probably a typo. Try again using "Documents". -- nosy: +eryksun ___ Python tracker

[issue12020] Attribute error with flush on stdout,stderr

2014-10-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Since 29ba6c399090 stdout and stderr flush upon exit. But any errors on flushing were swallowed. Since 4ca497f4819c (issue5319) an error is printed if stdout flushing fails. FlushFile doesn't provide all methods and attributes of io.TextIOBase. But it is no

[issue22645] Unable to install Python 3.4.2 amd64 on Windows 8.1 Update 1

2014-10-18 Thread Matthew Barnett
Matthew Barnett added the comment: @Terry: Just to clarify, I didn't have a problem installing over Python 3.4.1, only with uninstalling Python 3.4.1 (with other stuff installed there) and then installing Python 3.4.2. -- ___ Python tracker

[issue11820] idle3 shell os.system swallows shell command output

2014-10-18 Thread ppperry
ppperry added the comment: The same lack of output occurs from processes started via the multiprocessing module. -- nosy: +ppperry versions: +Python 2.7 ___ Python tracker ___ _

[issue22638] ssl module: the SSLv3 protocol is vulnerable ("POODLE" attack)

2014-10-18 Thread Alex Gaynor
Alex Gaynor added the comment: Benjamin, do you have an opinion on backporting this to 2.7? -- ___ Python tracker ___ ___ Python-bugs-

[issue11820] idle3 shell os.system swallows shell command output

2014-10-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: #22664 (closed as duplicate of this) has ppperry's multiprocessing test example. -- ___ Python tracker ___ _

[issue22660] Review ssl docs for security recommendations

2014-10-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is a patch. -- keywords: +patch Added file: http://bugs.python.org/file36961/ssldoc.patch ___ Python tracker ___ __

[issue22667] Incorrect evaluation of variables with names containing supplementary characters

2014-10-18 Thread Drekin
New submission from Drekin: >>> eval("\N{mathematical double-struck capital a}") NameError: name 'A' is not defined >>> A = 2 >>> eval("\N{mathematical double-struck capital a}") 2 >>> "\N{mathematical double-struck capital a}" == "A" False -- components: Interpreter Core, Unicode messag

[issue22667] Incorrect evaluation of variables with names containing supplementary characters

2014-10-18 Thread Benjamin Peterson
Benjamin Peterson added the comment: Identifier names are normalized. >>> unicodedata.normalize("NFKC", "\N{mathematical double-struck capital a}") >>> == "A" True -- nosy: +benjamin.peterson resolution: -> not a bug status: open -> closed ___ Pyth

[issue22648] Unable to install Python 3.4.2 amd64 on Windows 8.1

2014-10-18 Thread Georg Brandl
Changes by Georg Brandl : -- Removed message: http://bugs.python.org/msg229654 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue22648] Unable to install Python 3.4.2 amd64 on Windows 8.1

2014-10-18 Thread Georg Brandl
Georg Brandl added the comment: Removed the message containing the log. It is making it very clumsy to view this issue. Please resubmit as a file attachment. -- ___ Python tracker _

[issue22648] Unable to install Python 3.4.2 amd64 on Windows 8.1

2014-10-18 Thread Georg Brandl
Changes by Georg Brandl : -- Removed message: http://bugs.python.org/msg229655 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue22648] Unable to install Python 3.4.2 amd64 on Windows 8.1

2014-10-18 Thread Pierre Boulanger
Pierre Boulanger added the comment: Here is the right log... -- Added file: http://bugs.python.org/file36962/log.txt ___ Python tracker ___ __

[issue22524] PEP 471 implementation: os.scandir() directory scanning function

2014-10-18 Thread Ben Hoyt
Ben Hoyt added the comment: Attaching updated patch (scandir-2.patch) per Victor's code review here: http://bugs.python.org/review/22524/diff/13005/Modules/posixmodule.c Note that I haven't included test_scandir.py this time, as I haven't made any changes there, and it's not really ready for P

[issue13918] locale.atof documentation is missing func argument

2014-10-18 Thread Cédric Krier
Cédric Krier added the comment: Add return value is string in doc Add versionadded And yes I signed the agreement. -- Added file: http://bugs.python.org/file36964/delocalize.patch ___ Python tracker ___

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-10-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3ffa43e8ab47 by Terry Jan Reedy in branch '2.7': Issue #20155: Fix non-buildbot test failure on Windows. Patch by Claudiu Popa, https://hg.python.org/cpython/rev/3ffa43e8ab47 New changeset 5c0f17063fb8 by Terry Jan Reedy in branch '3.4': Issue #201

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-10-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: Patch fixes failures for me. Let's hope that change does not fail on other systems or buildbots (starting at 21:17 bb time). I will check bbs later. There seems to be a 2.7 speed issue which looks like a hang until running with -v. On my machine, 2.7 runs 34

[issue20689] socket.AddressFamily is absent in pydoc output

2014-10-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset f8a8ddf0b070 by Ethan Furman in branch '3.4': Issue20689: add missing API pieces to __all__ https://hg.python.org/cpython/rev/f8a8ddf0b070 New changeset 7266562c2bb3 by Ethan Furman in branch 'default': Issue20689: add missing API pieces to __all__

[issue20689] socket.AddressFamily is absent in pydoc output

2014-10-18 Thread Ethan Furman
Changes by Ethan Furman : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue22668] memoryview.format is corrupted due to dangling shared pointer

2014-10-18 Thread Tom Flanagan
New submission from Tom Flanagan: When slicing or cloning a memoryview object that has been previously cast to change its format string, the new memoryview's format shares a pointer to the parent's format string, which may be deleted at any time. This manifests as a corrupt format when using t

[issue22668] memoryview.format is corrupted due to dangling shared pointer

2014-10-18 Thread Tom Flanagan
Tom Flanagan added the comment: Fix memoryview object allocations to copy format string -- keywords: +patch Added file: http://bugs.python.org/file36966/22668patch.diff ___ Python tracker __

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-10-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: I copied the example profile code at the top and bottom of test_get and nearly all (7.155 / 7.210) of the time is in _socket.socket.connect, which takes .5 sec per call. 147.1550.5117.1550.511 {method 'connect' of _socket.socket' objects} I

[issue22669] Test_venv fails when _ctypes is not available.

2014-10-18 Thread Terry J. Reedy
New submission from Terry J. Reedy: For whatever reason, AMD 64 Open Indiana ('stable' buildbot #3) is not building ctypes. test_venv fails with FAIL: test_with_pip (test.test_venv.EnsurePipTest) -- Traceback (most recent call l

[issue22669] Test_venv fails when _ctypes is not available.

2014-10-18 Thread Ned Deily
Ned Deily added the comment: This is a duplicate of Issue22611. -- nosy: +dstufft, ned.deily resolution: -> duplicate stage: needs patch -> resolved status: open -> closed superseder: -> pip needs ctypes ___ Python tracker

[issue22669] Test_venv fails when _ctypes is not available.

2014-10-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: I think this was improperly closed. #22611 was about pip. This one is about test_venv failing today, 8 days after 22611 was closed, when optional module _ctypes is not built. The resolution of this issue should be that either the buildbots start using the n

[issue22669] Test_venv fails when _ctypes is not available.

2014-10-18 Thread Ned Deily
Ned Deily added the comment: Issue22611 documents exactly the same failure so if this issue was improperly closed than Issue22611 was, too. So I would think the earlier issue would be the place to discuss this. But, in any case, I think the issue is that the latest version of pip hasn't been

[issue22669] Test_venv fails when _ctypes is not available.

2014-10-18 Thread Donald Stufft
Donald Stufft added the comment: It hasn't been released yet, test_venv could be temp disabled if ctypes isn't available though. -- ___ Python tracker ___ __

[issue22669] Test_venv fails when _ctypes is not available.

2014-10-18 Thread Ned Deily
Ned Deily added the comment: As I understand it, the reason test_venv is failing is because of a defect in the pip vendored colorama. The test has found the unexpected dependency of the vendored package with ctypes. It's good that the test failed. The right solution is to provide the update

[issue22669] Test_venv fails when _ctypes is not available.

2014-10-18 Thread Donald Stufft
Donald Stufft added the comment: More or less. You could argue whether it's a defect or not but it unconditionally imports ctypes and apparently that is an optional module (I had no idea it was personally, and I can't find any documentation to say that it is). colorama doesn't really *need* ct