[issue23361] integer overflow in winapi_createprocess

2015-02-11 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- versions: +Python 3.3, Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mail

[issue20916] ssl.enum_certificates() will not return all certificates trusted by Windows

2015-02-11 Thread John Nagle
John Nagle added the comment: Amusingly, I'm getting this failure on "verisign.com" on Windows 7 with Python 2.7.9: "HTTP error - [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:581)..)" The current Verisign root cert (Class 3 public) is, indeed, not in the Windows 7 cert

[issue23452] Build errors using VS Express 2013 in win32 mode

2015-02-11 Thread Mark Lawrence
New submission from Mark Lawrence: I came across these while looking at #23449. The output is in the attached file as it's cleaner that way. -- components: Build, Windows files: Win32BuildErrors.txt messages: 235801 nosy: BreamoreBoy, steve.dower, tim.golden, zach.ware priority: normal

[issue23449] Fatal errors rebuilding 3.5 from Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Mark Lawrence
Mark Lawrence added the comment: I've run "build.bat -e" for all four combinations of release and debug with 32 or 64 bit with no problems. Go back to VS and all four combinations fail with this problem. -- ___ Python tracker

[issue21360] mailbox.Maildir should ignore files named with a leading dot

2015-02-11 Thread Martin Dengler
Changes by Martin Dengler : -- nosy: +mdengler ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue5053] http.client.HTTPMessage.getallmatchingheaders() always returns []

2015-02-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +r.david.murray versions: +Python 3.4, Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker ___ ___

[issue23432] Duplicate content in SystemExit documentation

2015-02-11 Thread Martin Panter
Martin Panter added the comment: How about this: ''' The constructor accepts the same optional argument passed to :func:`sys.exit`. If the value is an integer, it specifies the system exit status . . . . . . .. attribute:: code The exit status or error message that is passed to the const

[issue5053] http.client.HTTPMessage.getallmatchingheaders() always returns []

2015-02-11 Thread Martin Panter
Martin Panter added the comment: I agree with Catalin’s proposal to remove it straight away. It just causes confusion, and to me the intended behaviour is not equivalent to Message.get_all(). I would remove the entire HTTPMessage class and replace it as an alias of email.message.Message.

[issue10351] Add autocompletion for keys in dictionaries

2015-02-11 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- versions: +Python 3.5 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue10486] http.server doesn't set all CGI environment variables

2015-02-11 Thread Martin Panter
Martin Panter added the comment: Issue 5054 is for HTTP_ACCEPT -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue23435] installation with full path as prefix incomplete

2015-02-11 Thread Ivailo Monev
Ivailo Monev added the comment: I found the source of the problem, it's in distutils. at line 148 in Lib/distutils/util.py (in the tarball) the path join does not handle the full path properly (os.path.join returns the second path if it is full path), as a workaround I used "return new_root +

[issue23450] Possible loss of data warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Mark Lawrence
Mark Lawrence added the comment: Changes to nosy list as advised by Terry Reedy on c.l.py -- nosy: +haypo, serhiy.storchaka ___ Python tracker ___ ___

[issue23435] installation with full path as prefix incomplete

2015-02-11 Thread Ned Deily
Ned Deily added the comment: --enable-shared builds in some cases can erroneously link with an already installed Python library of the same version. That's what happened on my first try, before removing the system 2.7. In any case, I'm closing this issue for now. Feel free to reopen if you

[issue23435] installation with full path as prefix incomplete

2015-02-11 Thread Ivailo Monev
Ivailo Monev added the comment: I don't know how --enable-shared can have effect on this but I do not know much about the build system either (I just quick scoped trough it) so I tried that - it doesn't change anything. Also, I have only one version of Python installed and that is 2.7.9. I ha

[issue23435] installation with full path as prefix incomplete

2015-02-11 Thread Ned Deily
Ned Deily added the comment: Sorry, I tried using your ./configure with a 2.7.9 tarball on a Debian VM from which I removed the system Python 2.7 and, despite installing into the non-standard locations, at a quick look everything seemed to work OK. For example, >>> import _collections >>> _c

[issue23314] Disabling CRT asserts in debug build

2015-02-11 Thread Steve Dower
Steve Dower added the comment: Attached a patch with options 1 and 2 implemented - both are fairly trivial. Any thoughts/preferences? -- assignee: -> steve.dower keywords: +patch Added file: http://bugs.python.org/file38104/23314 Options.patch ___ P

[issue23152] fstat64 required on Windows

2015-02-11 Thread Steve Dower
Steve Dower added the comment: Anyone interested in reviewing this patch? -- assignee: -> steve.dower stage: -> patch review type: -> crash ___ Python tracker ___

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Steve Dower
Steve Dower added the comment: Patch attached. Interesting, once you declare Vista as the minimum API set, WinSock claims to support CMSG_LEN which enables sendmsg() et al support in _socket. Since the WinSock API bears little relation to the POSIX(?) API, it doesn't build, so I've just undef

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2015-02-11 Thread Berker Peksag
Berker Peksag added the comment: The change was suggested before PEP in issue 4718 (see msg78292), but PEP says: A server should allow read() to be called without an argument, and return the remainder of the client's input stream. https://www.python.org/dev/peps/pep-/#input-

[issue19143] Finding the Windows version getting messier (detect windows 8.1?)

2015-02-11 Thread Steve Dower
Steve Dower added the comment: The newer attachment should handle back to Windows 2000. Unfortunately, I have no machines to test this on, but all of the API calls existed at least on XP and the version numbers are correct. It runs correctly back to Python 2.7, works on 2.6 but gives the wrong

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Steve Dower
Steve Dower added the comment: Adding 'socket' nosy list, as Antoine may have a stronger opinion about changing _socket to avoid these warnings - they aren't all in Windows-exclusive code. Or I'm happy to add the suppression to the build if that's the better option. I'll work up a patch for t

[issue23446] Use PyMem_New instead of PyMem_Malloc

2015-02-11 Thread Benjamin Peterson
Benjamin Peterson added the comment: Very nice. I think you should also apply it to older versions, since (as we now) this sort of thing is very liable to cause security problems. -- ___ Python tracker ___

[issue23450] Possible loss of data warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Steve Dower
Steve Dower added the comment: These are warnings about implicit downcasting in a 64-bit build. They're not fatal to the build or execution (as far as we know), and as nice as it would be to fix them all, "good" fixes may introduce behaviour changes (for example, new overflow errors). As an a

[issue23449] Fatal errors rebuilding 3.5 from Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Steve Dower
Steve Dower added the comment: Have you previously run ``build.bat -e`` from the command line? That's the best way to make sure you're ready to work inside VS. (And technically it's allowed to happen, since VS 2013 is not supported and our build can do whatever it likes :) But it should work,

[issue22559] [backport] ssl.MemoryBIO

2015-02-11 Thread Nick Coghlan
Nick Coghlan added the comment: While I agree with the idea of backporting this at some point after it has been published in a 3.x release, Guido also specifically requested that we *not* treat PEP 466 as blanket permission to backport other network security features to Python 2.7. (I original

[issue23450] Possible loss of data warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Mark Lawrence
Mark Lawrence added the comment: Using Microsoft Visual Studio Express 2013 for Windows Desktop. -- ___ Python tracker ___ ___ Python-

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Mark Lawrence
Mark Lawrence added the comment: Using Microsoft Visual Studio Express 2013 for Windows Desktop. -- ___ Python tracker ___ ___ Python-

[issue23449] Fatal errors rebuilding 3.5 from Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Mark Lawrence
Mark Lawrence added the comment: Using Microsoft Visual Studio Express 2013 for Windows Desktop. -- ___ Python tracker ___ ___ Python-

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Mark Lawrence
New submission from Mark Lawrence: Raised as a placeholder. -- components: Build, Windows files: Deprecations.txt messages: 235778 nosy: BreamoreBoy, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: Deprecation warnings building 3.5 Visual Studio W

[issue20699] Behavior of ZipFile with file-like object and BufferedWriter.

2015-02-11 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue23450] Possible loss of data warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Mark Lawrence
New submission from Mark Lawrence: The attached file lists many of the warnings, but note there may be more as tkinter didn't build and is subject to #23449. -- components: Build, Windows files: PossibleLossOfData.txt messages: 235777 nosy: BreamoreBoy, steve.dower, tim.golden, zach.war

[issue23449] Fatal errors rebuilding 3.5 from Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Mark Lawrence
New submission from Mark Lawrence: If I select "Rebuild Solution" I get this:- error C1083: Cannot open include file: 'tcl.h': No such file or directory C:\cpython\Modules\_tkinter.c error C1083: Cannot open include file: 'tcl.h': No such file or directory C:\cpython\Modules\tkappi

[issue12340] Access violation when using the C version of the io module

2015-02-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Looks as the crash was fixed in one of previous bugfixes. As for memoryview related issue, this is a duplicate of issue20699. -- nosy: +serhiy.storchaka status: languishing -> pending superseder: -> Behavior of ZipFile with file-like object and Buffe

[issue23439] Fixed http.client.__all__ and added a test

2015-02-11 Thread Demian Brecht
Demian Brecht added the comment: The only real question I have is: why? As far as I'm aware, these are implementation details of the http.client module (there's even a comment in HTTPMessage that it might make sense to move the class altogether). As far as the constants go, they're only there fo

[issue20371] datetime.datetime.replace bypasses a subclass's __new__

2015-02-11 Thread Edward O
Edward O added the comment: Here is a workaround for subclasses (2&3-compatible): --- start code --- class MyDate(datetime): @classmethod def fromDT(cls, d): """ :type d: datetime """ return cls(d.year, d.month, d.day, d.hour, d.minute, d.second, d.microsecond, d.tzinf

[issue23439] Fixed http.client.__all__ and added a test

2015-02-11 Thread Berker Peksag
Berker Peksag added the comment: It's not that important in my opinion. Let's keep it simple for now :) -- ___ Python tracker ___ ___

[issue20371] datetime.datetime.replace bypasses a subclass's __new__

2015-02-11 Thread Edward O
Changes by Edward O : -- nosy: +eddygeek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue23439] Fixed http.client.__all__ and added a test

2015-02-11 Thread Martin Panter
Martin Panter added the comment: Actually, maybe I should add all those status codes as well, like http.client.OK. Will probably require different patches for 3.4 and 3.5. -- ___ Python tracker ___

[issue23446] Use PyMem_New instead of PyMem_Malloc

2015-02-11 Thread Stefan Krah
Stefan Krah added the comment: In _testbuffer.c: ndim <= 64, so the changes aren't really necessary. Somehow this fact needs to get widely known, since it does not make sense to check for overflow anytime ndim is used. The reason is of course that even an array with only 2 elements per dimensio

[issue23439] Fixed http.client.__all__ and added a test

2015-02-11 Thread Demian Brecht
Changes by Demian Brecht : -- nosy: +demian.brecht ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue23448] urllib2 needs to remove scope from IPv6 address when creating Host header

2015-02-11 Thread Demian Brecht
Changes by Demian Brecht : -- nosy: +demian.brecht ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue23442] http.client.REQUEST_HEADER_FIELDS_TOO_LARGE renamed in 3.5

2015-02-11 Thread Demian Brecht
Demian Brecht added the comment: Thanks for the catch Martin, the field should indeed be updated to be plural. I'll try to get a patch for this later today unless someone else beats me to it -- ___ Python tracker _

[issue23448] urllib2 needs to remove scope from IPv6 address when creating Host header

2015-02-11 Thread Martin Panter
Martin Panter added the comment: I’m no IPv6 expert, but there seems to be a few standards: * (Feb 2013). Encodes as http://[fe80::1%25eth0]/; says Windows uses this form. Also mentions the unencoded http://[fe80::1%eth0]/ form. Says that the HTTP Host hea

[issue23447] Relative imports with __all__ attribute

2015-02-11 Thread Antonio Cota
Changes by Antonio Cota : -- versions: +Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue23441] rlcompleter: tab on empty prefix => insert spaces

2015-02-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks a lot for doing this. I think it's a good improvement. I prefer 4 spaces myself (tabs usually insert 8 spaces, which is too wide), but I'm open to other opinions. -- nosy: +pitrou, r.david.murray stage: -> patch review versions: -Python 3.6 _

[issue15914] multiprocessing.SyncManager connection hang

2015-02-11 Thread Davin Potts
Davin Potts added the comment: Adding Brett Cannon as this issue appears to really be about doing an import shortly after an os.fork() -- this may be of particular interest to him. This issue probably should have had Brett and/or others added to nosy long ago. -- nosy: +brett.cannon, d

[issue9207] multiprocessing occasionally spits out exception during shutdown (_handle_workers)

2015-02-11 Thread Davin Potts
Davin Potts added the comment: Closing this issue after having verified that the issue can no longer be reproduced on the systems mentioned (Ubuntu 10.04 or OSX). Related issues such as issue9205 have been addressed elsewhere and other possibly related issues such as issue22393 are being trac

[issue23445] Use -Og for debug builds

2015-02-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset e37b201297d2 by Antoine Pitrou in branch '3.4': Issue #23445: pydebug builds now use "gcc -Og" where possible, to make the resulting executable faster. https://hg.python.org/cpython/rev/e37b201297d2 New changeset 527ed5205806 by Antoine Pitrou in b

[issue23445] Use -Og for debug builds

2015-02-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: Done. It shouldn't break anything. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue23448] urllib2 needs to remove scope from IPv6 address when creating Host header

2015-02-11 Thread Neil Gierman
New submission from Neil Gierman: Using a scoped IPv6 address with urllib2 creates an invalid Host header that Apache will not accept. IP = "fe80:::::0001%eth0" req = urllib2.Request("http://["; + IP + "]/") req.add_header('Content-Type', 'application/json')

[issue23447] Relative imports with __all__ attribute

2015-02-11 Thread Antonio Cota
New submission from Antonio Cota: That's the situation: a/ __init__.py first.py second.py #init.py __all__ = ['second', 'first'] print('i\'m starting the directory') #first.py print('hi, i\'m the first') from . import * #second.py print('hi, i\'m the second') >From the interactive prom

[issue23445] Use -Og for debug builds

2015-02-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: I'd like to apply it to 3.4 as well, because it makes development more pleasant. -- ___ Python tracker ___ _

[issue23445] Use -Og for debug builds

2015-02-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This looks pretty harmless. Some slow buildbots run tests very long time and failed with timeout after 3600 seconds. May be this patch will make them faster. Yet one advantage -- the code compiled with partial optimization will be closer to the code compiled

[issue23446] Use PyMem_New instead of PyMem_Malloc

2015-02-11 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch replaces PyMem_Malloc with PyMem_New if the former is used in the form PyMem_Malloc(len * sizeof(type)). This can fix possible overflow errors and makes the code cleaner. -- components: Extension Modules, Interpreter Core files: pyme

[issue22699] cross-compilation of Python3.4

2015-02-11 Thread William Scullin
Changes by William Scullin : -- nosy: +wscullin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue23445] Use -Og for debug builds

2015-02-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: -uall, without patch: real5m47.290s user18m28.405s sys 0m29.493s -uall, with patch: real3m35.132s user10m26.345s sys 0m30.351s That's a 38% speedup. -- ___ Python tracker

[issue23445] Use -Og for debug builds

2015-02-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: > As for the patch, may be use AX_CHECK_COMPILE_FLAG [1]? It's not used elsewhere in configure.ac. I reused the idiom used a couple lines above. -- ___ Python tracker ___

[issue23445] Use -Og for debug builds

2015-02-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Most slow tests are skipped without -uall. As for the patch, may be use AX_CHECK_COMPILE_FLAG [1]? [1] http://www.gnu.org/software/autoconf-archive/ax_check_compile_flag.html -- nosy: +serhiy.storchaka ___ Python

[issue23445] Use -Og for debug builds

2015-02-11 Thread Antoine Pitrou
New submission from Antoine Pitrou: Recent gcc versions have an optimization level named "-Og". It enables all optimizations that do not break debugging. Here is a patch that uses it on debug builds. Without the patch I get the following time for the whole test suite: $ time ./python -m test

[issue23444] HCI Bluetooth socket bind error on an arm crosscompiled environment

2015-02-11 Thread Thomas Chiroux
Changes by Thomas Chiroux : -- title: HCI Bluetooth socket bind error on an arm crosscompiler environment -> HCI Bluetooth socket bind error on an arm crosscompiled environment ___ Python tracker _

[issue20416] Marshal: performance regression with versions 3 and 4

2015-02-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks for your review Antoine and Victor. -- assignee: -> serhiy.storchaka resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker _

[issue23344] Faster marshalling

2015-02-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your review Kristján. Together with issue20416 this increases dumping speed almost twice for typical module data and up to 5x for some data. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___

[issue23444] HCI Bluetooth socket bind error on an arm crosscompiler environment

2015-02-11 Thread Thomas Chiroux
New submission from Thomas Chiroux: This bug bellow occurs only on my crosscompiled environment on arm (marvell armada 166): arm-pxa168-linux-gnueabi It does not seems to be a cross-compile issue: python compiles without problem and all unittests pass on the target device. description and firs

[issue23441] rlcompleter: tab on empty prefix => insert spaces

2015-02-11 Thread Armin Rigo
Armin Rigo added the comment: Ah, thanks, I missed there was already an issue. The patch's logic is as follows: when pressing tab anywhere in the line, if the word to complete is empty (which might be for any number of reasons, like the cursor is after another space or a non-word character), t

[issue3566] httplib persistent connections violate MUST in RFC2616 sec 8.1.4.

2015-02-11 Thread Demian Brecht
Demian Brecht added the comment: > Thanks for helping with this Demian. No worries. This textual white boarding exercise has also been greatly valuable in getting my own head wrapped around various low frequency socket level errors that can be encountered when using the client. The downside is t

[issue23443] XMLRPCLIB Exception uses str not class or instance

2015-02-11 Thread Ken Marsh
New submission from Ken Marsh: xmlrpclib.Fault: :exceptions must be classes or instances, not str" Exception handling appears to be improperly coded. Occurs when far side gives an unexpected response to an RPC call. -- components: XML messages: 235748 nosy: kmarsh priority: normal sev

[issue20416] Marshal: performance regression with versions 3 and 4

2015-02-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 012364df2712 by Serhiy Storchaka in branch 'default': Issue #20416: marshal.dumps() with protocols 3 and 4 is now 40-50% faster on https://hg.python.org/cpython/rev/012364df2712 -- nosy: +python-dev ___ P

[issue23344] Faster marshalling

2015-02-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset bb05f845e7dc by Serhiy Storchaka in branch 'default': Issue #23344: marshal.dumps() is now 20-25% faster on average. https://hg.python.org/cpython/rev/bb05f845e7dc -- nosy: +python-dev ___ Python tracker

[issue23433] undefined behaviour in faulthandler.c, exposed by GCC 5

2015-02-11 Thread STINNER Victor
STINNER Victor added the comment: Thanks for the report. This issue should now be fixed. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue23433] undefined behaviour in faulthandler.c, exposed by GCC 5

2015-02-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 689092296ad3 by Victor Stinner in branch '3.4': Issue #23433: Fix faulthandler._stack_overflow() https://hg.python.org/cpython/rev/689092296ad3 -- nosy: +python-dev ___ Python tracker

[issue23439] Fixed http.client.__all__ and added a test

2015-02-11 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> patch review versions: +Python 3.4, Python 3.5 ___ Python tracker ___ __

[issue23433] undefined behaviour in faulthandler.c, exposed by GCC 5

2015-02-11 Thread Matěj Stuchlík
Matěj Stuchlík added the comment: FWIW with your patch all the tests pass on Fedora rawhide in Koji [1], whereas before the x86_64 build would hang [2]. If you want to do some more testing, you can download the rpms from [1]. :) [1] http://koji.fedoraproject.org/koji/taskinfo?taskID=8894494 [2

[issue6634] sys.exit() called from threads other than the main one: undocumented behaviour

2015-02-11 Thread Jan-Philip Gehrcke
Changes by Jan-Philip Gehrcke : Added file: http://bugs.python.org/file38096/issue6634_py27.patch ___ Python tracker ___ ___ Python-bugs-list m

[issue23435] installation with full path as prefix incomplete

2015-02-11 Thread Ivailo Monev
Ivailo Monev added the comment: Right, I'm building it on custom Linux distribution on which software is installed on / instead of /usr on purpose. And the Python version is 2.7.9. -- ___ Python tracker __

[issue21717] Exclusive mode for ZipFile and TarFile

2015-02-11 Thread Berker Peksag
Changes by Berker Peksag : Added file: http://bugs.python.org/file38095/issue21717_tarfile_v4.diff ___ Python tracker ___ ___ Python-bugs-list

[issue23432] Duplicate content in SystemExit documentation

2015-02-11 Thread Berker Peksag
Berker Peksag added the comment: Good catch, thanks! Do you have better wording for that part of the patch? -- ___ Python tracker ___

[issue23435] installation with full path as prefix incomplete

2015-02-11 Thread Ivailo Monev
Changes by Ivailo Monev : -- components: +Build versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue6634] sys.exit() called from threads other than the main one: undocumented behaviour

2015-02-11 Thread Jan-Philip Gehrcke
Jan-Philip Gehrcke added the comment: Martin, I very much like the order you suggested, thanks. I did not feel confident enough for re-structuring the entire entry. So, can we agree on using that for Python 2.7? Is there a consensus regarding the approach to take for Python 3.5? Except from M

[issue23442] http.client.REQUEST_HEADER_FIELDS_TOO_LARGE renamed in 3.5

2015-02-11 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue1508475] transparent gzip compression in urllib

2015-02-11 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue23433] undefined behaviour in faulthandler.c, exposed by GCC 5

2015-02-11 Thread Matěj Stuchlík
Changes by Matěj Stuchlík : -- nosy: +sYnfo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue23258] Cannot Install Python 3.4.2 on Windows 7 64 bit / screen print attached

2015-02-11 Thread Will
Will added the comment: Had the exact same problem. Windows 7 / 64-bit All I can get from the MSIexec log is: Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or p

[issue21793] httplib client/server status refactor

2015-02-11 Thread Martin Panter
Martin Panter added the comment: FYI I opened Issue 23442 for a separate regression to do with the REQUEST_HEADER_FIELDS_TOO_LARGE name -- ___ Python tracker ___ ___

[issue23442] http.client.REQUEST_HEADER_FIELDS_TOO_LARGE renamed in 3.5

2015-02-11 Thread Martin Panter
New submission from Martin Panter: This is a regression caused by the new HTTPStatus enum from Issue 21793. RFC 6585 uses the plural “Fields”, so maybe the new enum symbol needs renaming. $ python3.4 Python 3.4.2 (default, Oct 8 2014, 13:44:52) [GCC 4.9.1 20140903 (prerelease)] on linux Type

[issue22086] Tab indent no longer works in interpreter

2015-02-11 Thread Martin Panter
Martin Panter added the comment: Patch at Issue 23441 -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue23441] rlcompleter: tab on empty prefix => insert spaces

2015-02-11 Thread Martin Panter
Martin Panter added the comment: Main bug report: Issue 22086. Can you say if this works when the cursor is not at the start of the entry? E.g. after an existing tab (Ctrl-V Tab on GNU readline) or space, or after an embedded newline (Ctrl-V Enter). What happens if you press backspace after p

[issue10351] Add autocompletion for keys in dictionaries

2015-02-11 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue14782] Tab-completion of callables displays opening paren

2015-02-11 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue23434] RFC6266 support (Content-Disposition for HTTP)

2015-02-11 Thread Myroslav Opyr
Changes by Myroslav Opyr : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue23434] RFC6266 support (Content-Disposition for HTTP)

2015-02-11 Thread Myroslav Opyr
Myroslav Opyr added the comment: As a proof of concept there is fix for the issue powered by rfc6266 library[1]. See cgi.py-v2.7.5-rfc6266_filename.patch References: [1] https://pypi.python.org/pypi/rfc6266 -- Added file: http://bugs.python.org/file38094/cgi.py-v2.7.5-rfc6266_filenam

[issue23441] rlcompleter: tab on empty prefix => insert spaces

2015-02-11 Thread Armin Rigo
New submission from Armin Rigo: In the interactive prompt: >>> if 1: ... Pressing tab here should just insert 4 spaces. It makes no sense to display all 500 possible "completions" of the empty word, and using tab to indent is a very common feature of any editor with a Python mode. Patch att

[issue23434] RFC6266 support (Content-Disposition for HTTP)

2015-02-11 Thread Myroslav Opyr
Myroslav Opyr added the comment: In test_cgi.py-v2.7.5-rfc6266_filename.patch there is a patch to test_cgi.py (Python 2.7.5) that reveals the issue. -- keywords: +patch Added file: http://bugs.python.org/file38092/test_cgi.py-v2.7.5-rfc6266_filename.patch _