[issue11429] ctypes is highly eclectic in its raw-memory support

2014-07-30 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue22085] Drop support of Tk 8.3

2014-07-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Oh, I forgot about this difference. Of course we can convert input arguments to match new syntax, but "trace vinfo" and "trace info variable" return different results: % trace add variable foo {read write} {tracer foo} % trace info variable foo {{read write}

[issue21580] PhotoImage(data=...) apparently has to be UTF-8 or Base-64 encoded

2014-07-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 818989a48e96 by Serhiy Storchaka in branch '2.7': Issue #21580: Now Tkinter correctly handles binary "data" and "maskdata" http://hg.python.org/cpython/rev/818989a48e96 -- ___ Python tracker

[issue22085] Drop support of Tk 8.3

2014-07-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9f333c06915f by Serhiy Storchaka in branch 'default': Back out of changes to Tkinter variables trace commands (issue #22085). http://hg.python.org/cpython/rev/9f333c06915f -- ___ Python tracker

[issue22112] '_UnixSelectorEventLoop' object has no attribute 'create_task'

2014-07-30 Thread Guido van Rossum
Guido van Rossum added the comment: I honestly don't know; ask Benjamin. :-) Personally, I'd say that ship has sailed. -- ___ Python tracker ___

[issue22112] '_UnixSelectorEventLoop' object has no attribute 'create_task'

2014-07-30 Thread Daniel Greenfeld
Daniel Greenfeld added the comment: This has been fixed in 3.4.2, but shows up in the 3.4.1 documentation. How do I fix the 3.4.1 documentation so this doesn't show up? -- Added file: http://bugs.python.org/file36173/Screen Shot 2014-07-30 at 8.13.12 PM.png ___

[issue22112] '_UnixSelectorEventLoop' object has no attribute 'create_task'

2014-07-30 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks for reporting a doc bug! The code should use asyncio.async() instead of loop.create_task(). -- ___ Python tracker ___

[issue22063] asyncio: sock_xxx() methods of event loops should check ath sockets are non-blocking

2014-07-30 Thread Guido van Rossum
Guido van Rossum added the comment: Hm. I think there are two different situations. One is where the app creates a socket (or other I/O thingie), passes it off to asyncio, and then asyncio owns it. This is the case for pipes and also for the optional sock parameter for create_connection().

[issue22112] '_UnixSelectorEventLoop' object has no attribute 'create_task'

2014-07-30 Thread Daniel Greenfeld
New submission from Daniel Greenfeld: Problem The documentation on asyncio provides an example of a parallel execution of tasks. The code is at: https://docs.python.org/3/library/asyncio-task.html#example-parallel-execution-of-tasks ``` python import asyncio @asyncio.coroutine def

[issue22101] collections.abc.Set doesn't provide copy() method

2014-07-30 Thread Guido van Rossum
Guido van Rossum added the comment: Agreed with Raymond. The return type of copy() for ABCs feels problematic. MutableMapping doesn't have it either. -- ___ Python tracker ___

[issue11271] concurrent.futures.ProcessPoolExecutor.map() doesn't batch function arguments by chunks

2014-07-30 Thread Dan O'Reilly
Dan O'Reilly added the comment: re: Diverging ThreadPoolExecutor and ProcessPoolExecutor APIs. I thought about this as well. It would of course be possible to make ThreadPoolExecutor's API match, but it would serve no useful purpose that I can think of. I guess we could make the ThreadPoolExec

[issue22101] collections.abc.Set doesn't provide copy() method

2014-07-30 Thread Raymond Hettinger
Raymond Hettinger added the comment: I don't think this is needed nor do I think that it is a good idea to have a copy() method in the ABCs because they know so little about their concrete underlying class (perhaps the backing store in the filesystem or a database). Besides, a user already h

[issue20170] Derby #1: Convert 137 sites to Argument Clinic in Modules/posixmodule.c

2014-07-30 Thread Larry Hastings
Larry Hastings added the comment: Two small fixes from Zach (thanks again Zach!) and I updated against current trunk so it should apply cleanly. How's it look now? -- Added file: http://bugs.python.org/file36172/larry.clinicize.posixmodule.6.diff __

[issue11271] concurrent.futures.ProcessPoolExecutor.map() doesn't batch function arguments by chunks

2014-07-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thank you for the patch. I've posted some review comments. Two further remarks: - this makes the ProcessPool API slightly different from the ThreadPool one. I wonder if this is acceptable or not. Thoughts? - the patch would need unit tests for the additional f

[issue22089] collections.MutableSet does not provide update method

2014-07-30 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- resolution: -> not a bug status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue18402] Finding perl64

2014-07-30 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +steve.dower ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue22063] asyncio: sock_xxx() methods of event loops should check ath sockets are non-blocking

2014-07-30 Thread STINNER Victor
STINNER Victor added the comment: I reopen the issue because the documentation is not correct. Using the proactor event loop, the socket doesn't need to be non-blocking. Should we mention it? Another issue: BaseEventLoop.connect_read_pipe() doc says that the pipe is set to non-blocking mode, w

[issue22111] Improve imaplib testsuite.

2014-07-30 Thread Milan Oberkirch
Changes by Milan Oberkirch : Added file: http://bugs.python.org/file36171/imaplib_test.patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue22111] Improve imaplib testsuite.

2014-07-30 Thread Milan Oberkirch
Changes by Milan Oberkirch : Removed file: http://bugs.python.org/file36170/imaplib_test.patch ___ Python tracker ___ ___ Python-bugs-list mai

[issue22111] Improve imaplib testsuite.

2014-07-30 Thread Milan Oberkirch
New submission from Milan Oberkirch: The status quo of test_imaplib is a bit frustrating: 4 test functions out of 31 get executed by default while only few seem to need any resources. I tried to solve this in the attached patch. Did I get something wrong or was that checking for network resour

[issue22110] enable extra compilation warnings

2014-07-30 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue17371] Mismatch between Python 3.3 build environment and distutils compiler support

2014-07-30 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +loewis, steve.dower ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue22110] enable extra compilation warnings

2014-07-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: Enabling the warnings may be a good incitation for other people to fix them ;) -- ___ Python tracker ___ ___

[issue22043] Use a monotonic clock to compute timeouts

2014-07-30 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +neologix ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue22043] Use a monotonic clock to compute timeouts

2014-07-30 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +belopolsky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue22043] Use a monotonic clock to compute timeouts

2014-07-30 Thread STINNER Victor
STINNER Victor added the comment: Status of CLOCK_MONOTONIC in Hurd: https://github.com/ArneBab/hurd-web/blob/master/open_issues/clock_gettime.mdwn -- ___ Python tracker ___

[issue22108] python c api wchar_t*/char* passing contradiction

2014-07-30 Thread Jonas Jelten
Jonas Jelten added the comment: I'd say Python should definitely change its internal string type to char*. Exposing "handy" wchar_t->char conversion functions don't resolve the data represenation enhancement. -- ___ Python tracker

[issue19007] precise time.time() under Windows 8: use GetSystemTimePreciseAsFileTime

2014-07-30 Thread STINNER Victor
Changes by STINNER Victor : -- title: precise time.time() under Windows 8 -> precise time.time() under Windows 8: use GetSystemTimePreciseAsFileTime ___ Python tracker ___ _

[issue18597] On Windows sys.stdin.readline() doesn't handle Ctrl-C properly

2014-07-30 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue22068] tkinter: avoid reference loops with Variables and Fonts

2014-07-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: -R no longer finds leaks with current Idle tests. There might still be some in modules not tested. -- components: -IDLE, Tests title: test_idle leaks uncollectable objects -> tkinter: avoid reference loops with Variables and Fonts ___

[issue22085] Drop support of Tk 8.3

2014-07-30 Thread Ned Deily
Ned Deily added the comment: The checkin seems to have broken test_idle and test_ttk_guionly. Typical failure: == ERROR: test_horizontal_range (tkinter.test.test_ttk.test_extensions.LabeledScaleTest) -

[issue22068] test_idle leaks uncollectable objects

2014-07-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6b7f189daa62 by Terry Jan Reedy in branch '2.7': Issue #22068: Don't create self reference cycles in idlelib.ConfigDialog. http://hg.python.org/cpython/rev/6b7f189daa62 New changeset 1927f47a1838 by Terry Jan Reedy in branch '3.4': Issue #22068: Don

[issue15443] datetime module has no support for nanoseconds

2014-07-30 Thread STINNER Victor
STINNER Victor added the comment: My patch for the issue #22043 adds nanosecond precision to get the system clock. -- ___ Python tracker ___ _

[issue22110] enable extra compilation warnings

2014-07-30 Thread STINNER Victor
STINNER Victor added the comment: The patch adds a a lot of new warnings. Would it be possible to fix them before applying the patch? -- ___ Python tracker ___ _

[issue18477] fix_import (2to3 fixer) is not case-sensitive

2014-07-30 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue19007] precise time.time() under Windows 8

2014-07-30 Thread STINNER Victor
STINNER Victor added the comment: My patch for the issue #22043 replaces the _PyTime_timeval structure (10^-6 second resolution, 1 us) with a _PyTime_timespec structure (10^-9 second resolution, 1 ns). It may help for this issue. -- ___ Python track

[issue18477] fix_import (2to3 fixer) is not case-sensitive

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Can we set the stage to patch review please. -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker ___ _

[issue18407] Fix compiler warnings in pythoncore for Win64

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have the stage set to patch review please. -- nosy: +BreamoreBoy -brian.curtin versions: +Python 3.5 ___ Python tracker ___ __

[issue18295] Possible integer overflow in PyCode_New()

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Note this is referenced from #18407. -- nosy: +BreamoreBoy versions: +Python 3.5 ___ Python tracker ___ _

[issue22110] enable extra compilation warnings

2014-07-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: +1 from me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue9122] Problems with multiprocessing, Python embedding and Windows

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as "out of date"? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list

[issue18402] Finding perl64

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Can ths be closed as "not a bug"? -- nosy: +BreamoreBoy -brian.curtin ___ Python tracker ___ ___ Pyth

[issue19007] precise time.time() under Windows 8

2014-07-30 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +steve.dower, tim.golden, zach.ware versions: +Python 3.5 -Python 3.4 ___ Python tracker ___ ___ P

[issue12197] non-blocking SSL write fails if a partial write was issued

2014-07-30 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20844] SyntaxError: encoding problem: iso-8859-1 on Windows

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: I've tried to make the title more meaningful, feel free to change it if you can think of something better. -- components: +Interpreter Core nosy: +tim.golden, zach.ware title: coding bug remains in 3.3.5rc2 -> SyntaxError: encoding problem: iso-8859-1 o

[issue13123] bdist_wininst uninstaller does not remove pycache directories

2014-07-30 Thread Paul Moore
Paul Moore added the comment: I'm not sure how relevant this is any more, as pip is the preferred installer these days and it cleanly uninstalls projects. At least for my usage, I no longer use wininst installers at all. I won't close this myself, though, as the issue still exists. But I won't

[issue14111] IDLE Debugger should handle interrupts

2014-07-30 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22110] enable extra compilation warnings

2014-07-30 Thread Charles-François Natali
New submission from Charles-François Natali: The patch attached enables -Wsign-compare and -Wunreachable-code if supported by the compiler. AFAICT, mixed sign comparison warning is automatically enabled by Microsoft's compiler, and is usually a good thing. It does add some warnings though. As

[issue14105] Breakpoints in debug lost if line is inserted; IDLE

2014-07-30 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13123] bdist_wininst uninstaller does not remove pycache directories

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Just a gentle reminder. -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker ___ __

[issue18069] Subprocess picks the wrong executable on Windows

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Who is best placed to look at this, there's nobody active on the experts list for subprocess? -- components: +Library (Lib) -Interpreter Core nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python

[issue17634] Win32: shutil.copy leaks file handles to child processes

2014-07-30 Thread STINNER Victor
STINNER Victor added the comment: The issue has been fixed in Python 3.4 with the PEP 446. I close this issue. If you would like to enhance shutil.copyfile() by using CopyFile() on Windows, please open a new issue. -- resolution: -> fixed status: open -> closed versions: -Python 2.7,

[issue17634] Win32: shutil.copy leaks file handles to child processes

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: PEP 446 supersedes PEP 433. -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ __

[issue12806] argparse: Hybrid help text formatter

2014-07-30 Thread paul j3
paul j3 added the comment: In http://bugs.python.org/issue22029 argparse CSS white-space: like control for individual text blocks I propose a set of `str` subclasses that can be used to define the wrapping style of individual text blocks. The idea is adapted from the HTML '' tag, and the CSS w

[issue17371] Mismatch between Python 3.3 build environment and distutils compiler support

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: According to http://matthew-brett.github.io/pydagogue/python_msvc.html Python 3.3 has always been compiled with 2010 on Windows so I think this can be closed as "user sorted it out for him/herself" :) -- nosy: +BreamoreBoy _

[issue10572] Move test sub-packages to Lib/test

2014-07-30 Thread Zachary Ware
Zachary Ware added the comment: I'm in favor of a move, especially for ctypes, sqlite3, unittest, and tkinter, and don't really see a reason not to move distutils and lib2to3. The IDLE tests make a certain amount of sense to stay in the idlelib folder, just because IDLE is a special case. I'

[issue13719] bdist_msi upload fails

2014-07-30 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue13719] bdist_msi upload fails

2014-07-30 Thread Mark Lawrence
Changes by Mark Lawrence : -- components: -Distutils2 nosy: +dstufft versions: +Python 3.5 -3rd party, Python 3.2, Python 3.3 ___ Python tracker ___

[issue15082] [httplib] httplib.BadStatusLine on any HTTPS connection in certain unknown cases.

2014-07-30 Thread Demian Brecht
Changes by Demian Brecht : -- nosy: +demian.brecht ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue16383] Python 3.3 Permission Error with User Library on Windows

2014-07-30 Thread Zachary Ware
Zachary Ware added the comment: Jim, is there any way you could cut down your example to something small and self-contained? It may be that the process of doing that leads to a problem in your code. As it is, I cannot reproduce your error, or pick out what might be causing it. From a brief

[issue22108] python c api wchar_t*/char* passing contradiction

2014-07-30 Thread STINNER Victor
STINNER Victor added the comment: This issue is why I created the issue #18395. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue18885] handle EINTR in the stdlib

2014-07-30 Thread STINNER Victor
STINNER Victor added the comment: FYI Charles-François and me are working on a PEP to address this issue: the PEP 475. The PEP is not ready yet for a review. -- ___ Python tracker _

[issue2771] Test issue

2014-07-30 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- priority: low -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue2771] Test issue

2014-07-30 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- priority: -> low resolution: not a bug -> status: -> open ___ Python tracker ___ ___ Python-bugs-list

[issue2771] Test issue

2014-07-30 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: closed -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue17620] Python interactive console doesn't use sys.stdin for input

2014-07-30 Thread Guido van Rossum
Guido van Rossum added the comment: sys.stdin.readline() never delegates to GNU readline. The REPL calls GNU readline directly. There's clearly some condition that determines whether to call GNU readline or sys.stdin.readline, but it may not correspond to what you want (e.g. it may just test

[issue22109] Python failing in markupsafe module when running ansible

2014-07-30 Thread Cory Klein
Cory Klein added the comment: I'll track things down in that direction. Thanks, David. -- ___ Python tracker ___ ___ Python-bugs-list

[issue22109] Python failing in markupsafe module when running ansible

2014-07-30 Thread R. David Murray
R. David Murray added the comment: As is indicated by the fact that markupsafe is in the 'site-packages' directory, markupsafe is a 3rd party library and is not part of the python standard library. Most likely the version of markupsafe you have does not match the one ansible is expecting, but

[issue22106] Python 2 docs 'control flow/pass' section contains bad example

2014-07-30 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: -> resolved ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue22106] Python 2 docs 'control flow/pass' section contains bad example

2014-07-30 Thread Raymond Hettinger
Raymond Hettinger added the comment: Sorry Charles, this is a non-issue. The section does a great job communicating what "pass" does. It has been in the docs since 2007 and no harm has come of it. -- nosy: +rhettinger resolution: -> not a bug status: open -> closed

[issue16907] Distutils fails to build extension in path with spaces

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Of the two issues mentioned in msg179485 #4508 is still open but #13765 has been closed "not a bug". -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 ___ Python tracker

[issue17620] Python interactive console doesn't use sys.stdin for input

2014-07-30 Thread Drekin
Drekin added the comment: My naive picture of ideal situation looks like this: When the interactive loop wants input, it just calls sys.stdin.readline, which delegates to sys.stdin.buffer.raw.readinto or .read, these can use GNU readline if available to get the data. May I ask, what's wrong wi

[issue22109] Python failing in markupsafe module when running ansible

2014-07-30 Thread Cory Klein
Cory Klein added the comment: Also to note: this is on OS X 10.10 Yosemite -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue4508] distutils compiler not handling spaces in path to output/src files

2014-07-30 Thread Mark Lawrence
Changes by Mark Lawrence : -- components: -Distutils2 nosy: +dstufft versions: +Python 3.4, Python 3.5 -3rd party, Python 3.2, Python 3.3 ___ Python tracker ___ _

[issue22109] Python failing in markupsafe module when running ansible

2014-07-30 Thread Cory Klein
New submission from Cory Klein: After installing ansible and python using homebrew, if I run ansible it crashes after calling into python's markupsafe: $ ansible Traceback (most recent call last): File "/usr/local/Cellar/ansible/1.6.10/libexec/bin/ansible", line 5, in pkg_resources.run_

[issue17620] Python interactive console doesn't use sys.stdin for input

2014-07-30 Thread Guido van Rossum
Guido van Rossum added the comment: I propose not to mess with GNU readline. But that doesn't mean we can't try to fix this issue by detecting that sys.stdin has changed and use it if it isn't referring to the original process stdin. It will be tricky however to make sure nothing breaks. (T

[issue22108] python c api wchar_t*/char* passing contradiction

2014-07-30 Thread Martin v . Löwis
Martin v. Löwis added the comment: You were misinterpreting PEP 393 - it is only about the representation of string objects, and doesn't affect any pre-existing API. Changing Py_SetProgramName is not possible without breaking existing code, so it could only happen in Python 4. A proper solut

[issue6639] turtle: _tkinter.TclError: invalid command name ".10170160"

2014-07-30 Thread Lita Cho
Lita Cho added the comment: I can make it worth such that it doesn't raise a Terminator error. This works great when working with Turtle on the command line. I basically check if the root exists for all Tk canvas calls. If it got destroyed, then it just returns. However, if you run the follow

[issue22108] python c api wchar_t*/char* passing contradiction

2014-07-30 Thread Jonas Jelten
New submission from Jonas Jelten: The documentation and the code example at https://docs.python.org/3.5/extending/embedding.html#very-high-level-embedding #include int main(int argc, char *argv[]) { Py_SetProgramName(argv[0]); /* optional but recommended */ Py_Initialize(); PyRun_Simple

[issue22007] sys.stdout.write on Python 2.7 is not EINTR safe

2014-07-30 Thread Piotr Dobrogost
Piotr Dobrogost added the comment: @hypo Is there any reason you keep this PEP "secret" :) by not mentioning it on bug 18885? -- nosy: +piotr.dobrogost ___ Python tracker ___ __

[issue1776160] Buffer overflow when listing deeply nested directory

2014-07-30 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- nosy: -loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue18885] handle EINTR in the stdlib

2014-07-30 Thread Piotr Dobrogost
Changes by Piotr Dobrogost : -- nosy: +piotr.dobrogost ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue16322] time.tzname on Python 3.3.0 for Windows is decoded by wrong encoding

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Could somebody respond to the originator please. -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ _

[issue7833] bdist_wininst installers fail to load extensions built with Issue4120 patch

2014-07-30 Thread Mark Lawrence
Changes by Mark Lawrence : -- components: -Distutils2 nosy: +dstufft versions: +Python 3.4, Python 3.5 -3rd party, Python 3.2, Python 3.3 ___ Python tracker ___ _

[issue1776160] Buffer overflow when listing deeply nested directory

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: I suggest we close this as "won't fix" since I don't see how we can justify spending time working around a known limitation of Windows. -- nosy: +BreamoreBoy ___ Python tracker _

[issue16383] Python 3.3 Permission Error with User Library on Windows

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Works fine for me on Windows 8.1 64 bit using 3.4.1 and 3.5.0a0. Can one on our Windows gurus confirm this please. -- nosy: +BreamoreBoy, steve.dower, tim.golden, zach.ware ___ Python tracker

[issue22085] Drop support of Tk 8.3

2014-07-30 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue22085] Drop support of Tk 8.3

2014-07-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1aa6ac23340d by Serhiy Storchaka in branch 'default': Issue #22085: Dropped support of Tk 8.3 in Tkinter. http://hg.python.org/cpython/rev/1aa6ac23340d -- nosy: +python-dev ___ Python tracker

[issue21580] PhotoImage(data=...) apparently has to be UTF-8 or Base-64 encoded

2014-07-30 Thread Martin v . Löwis
Martin v. Löwis added the comment: The 2.7_2 patch looks good to me. I won't rule on the backwards compatibility implications, although I agree that this is unlikely to cause a regression (it would only if somebody updated the standard library only, *and* would use data= for PhotoImage). I'm u

[issue20170] Derby #1: Convert 137 sites to Argument Clinic in Modules/posixmodule.c

2014-07-30 Thread Zachary Ware
Zachary Ware added the comment: Close, but no cigar :). Posted Rietveld comments to address the last two compile issues (one of which also appears to be a major bug, but only a warning at compile time). Also, Victor has added os.get_blocking() and os.set_blocking(), which prevent your patch

[issue2771] Test issue

2014-07-30 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- status: -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue2771] Test issue

2014-07-30 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- status: closed -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue2771] Test issue

2014-07-30 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- priority: normal -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue21580] PhotoImage(data=...) apparently has to be UTF-8 or Base-64 encoded

2014-07-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Martin for your reviews. Here is updated 2.7 patch which implements your suggestion. The disadvantage of this patch in comparison with first version is that it will not work with statically compiled embedded Python, when only stdlib is updated. I

[issue16328] win_add2path.py sets wrong user path

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Should we create the scripts dir during install? Is it that big a deal? -- nosy: +BreamoreBoy, steve.dower, zach.ware ___ Python tracker ___ ___

[issue10551] mimetypes read from the registry should not overwrite standard mime mappings

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Ben you're correct. The other issues have been addressed in #10162 and #9291 so I believe this can be closed. One 2.7 regression regarding mixed str and unicode objects is addressed in #21652. -- ___ Python tracker

[issue15207] mimetypes.read_windows_registry() uses the wrong regkey, creates wrong mappings

2014-07-30 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue15207] mimetypes.read_windows_registry() uses the wrong regkey, creates wrong mappings

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: @Christoph sorry #21652 has already been raised to address the problem of mixed str and unicode objects. -- ___ Python tracker ___ _

[issue21580] PhotoImage(data=...) apparently has to be UTF-8 or Base-64 encoded

2014-07-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9474f2971855 by Serhiy Storchaka in branch '3.4': Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk. http://hg.python.org/cpython/rev/9474f2971855 New changeset b9d249316f29 by Serhiy Storchaka in branch 'default': Issue #2158

[issue15207] mimetypes.read_windows_registry() uses the wrong regkey, creates wrong mappings

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: @Christoph please raise a new issue regarding the problem you describe in msg219788. -- nosy: +BreamoreBoy ___ Python tracker ___ __

  1   2   >