[issue22608] test_socket fails with sem_init: Too many open files

2015-03-21 Thread Martin Panter
Martin Panter added the comment: Maybe these patches work around the problem in these cases, but it sounds like the threading.Event class needs to grow a close() method or support the context manager protocol, rather than relying on the garbage collector to clean it up. -- nosy: +vadmi

[issue22516] Windows Installer won't - even when using "just for me"option

2015-03-21 Thread Mark Mikofski
Mark Mikofski added the comment: WinPython and miniconda are more current distros than portable python, and they come in both 32 & 64bit flavors. Portable python hasn't been updated recently and only offers 32 bit which is IMO worthless except for the bundle as app case, eg meld installer. I

[issue22516] Windows Installer won't - even when using "just for me"option

2015-03-21 Thread Paul Moore
Paul Moore added the comment: I agree with Ned, this sounds like a significant change. In particular, Portable Python seems to currently only offer 3.2.5 at the moment. And it's not at all clear to me whether it's a 32-bit or a 64-bit version (but I suspect the former). One thing I'd want to u

[issue22516] Windows Installer won't - even when using "just for me"option

2015-03-21 Thread Steve Dower
Steve Dower added the comment: > miniconda does not install all of the sci-data packages, only conda and > python 2.7 miniconda is actually a tool that gives you the "conda" command, which can be used to install Python 2.6, 2.7, 3.3 or 3.4, 32 or 64-bit and a huge range of compatible packages

[issue22516] Windows Installer won't - even when using "just for me"option

2015-03-21 Thread Steve Dower
Steve Dower added the comment: > (when does Windows switch to 3.6? Honestly, it can probably never happen...). On re-read, this isn't quite clear: Hypothetically, if Windows 10 included Python 3.5, when would it be upgraded to Python 3.6? Probably never. Back-compat is problematic on Linux, b

[issue23735] Readline not adjusting width after resize with 6.3

2015-03-21 Thread Carlos Pita
New submission from Carlos Pita: See here: https://github.com/ipython/ipython/issues/6974 Chet Ramey confirmed the bug is downstream: As I recall from looking briefly at the ipython/python source code, it has to do with python not handling the SIGWINCH and expecting readline to do it even when

[issue23546] Windows, 'Edit withIDLE', and multplie installed versions

2015-03-21 Thread Steve Dower
Steve Dower added the comment: Hey Terry, as a first step towards fixing the current 3.5 issue of not having Edit with IDLE at all, is it okay if the "Edit with IDLE" menu launches (approx.) "py -m idlelib.idle %1"? Currently the shortcut menu is part of the launcher - the "Open" item launches

[issue22516] Windows Installer won't - even when using "just for me"option

2015-03-21 Thread Nick Coghlan
Nick Coghlan added the comment: As of last month, Microsoft do provide official Python support, but only in the context of the online Azure Machine Learning Environment: http://blogs.technet.com/b/machinelearning/archive/2015/02/18/announcing-the-general-availability-of-azure-machine-learning.a

[issue23735] Readline not adjusting width after resize with 6.3

2015-03-21 Thread R. David Murray
R. David Murray added the comment: Why would this not constitute a bug in readline? Readline isn't going to be active all of the time in most applications, so why shouldn't it be readline's responsibility to install the signal handler at initialization and handle it? If the application wants

[issue23571] Raise SystemError if a function returns a result with an exception set

2015-03-21 Thread Tim Graham
Tim Graham added the comment: Here's an exception in Django after the latest patch. The Django code block in the last exception catches ValueError, but this doesn't seem to work any longer since it's "wrapped" in SystemError. As Berker mentioned, some upgrade tips would be great as I'm not sur

[issue22516] Windows Installer won't - even when using "just for me"option

2015-03-21 Thread Nick Coghlan
Nick Coghlan added the comment: Given the expansion of the discussion to more general questions of getting CPython from upstream into the hands of end users, I've added in some more of the distro level folks to the nosy list (Matthias, Barry, Slavek, Robert). This idea of more actively pursuin

[issue22933] Misleading sentence in doc for shutil.move

2015-03-21 Thread Mike Short
Changes by Mike Short : -- keywords: +patch Added file: http://bugs.python.org/file38627/shutil_2.7.patch ___ Python tracker ___ ___ P

[issue22933] Misleading sentence in doc for shutil.move

2015-03-21 Thread Mike Short
Changes by Mike Short : Added file: http://bugs.python.org/file38628/shutil_latest.patch ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue23546] Windows, 'Edit withIDLE', and multiple installed versions

2015-03-21 Thread Mark Lawrence
Changes by Mark Lawrence : -- title: Windows, 'Edit withIDLE', and multplie installed versions -> Windows, 'Edit withIDLE', and multiple installed versions ___ Python tracker __

[issue22149] the frame of a suspended generator should not have a local trace function

2015-03-21 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have a formal patch review please. I've assumed that if acceptable the patch could also be applied to 3.4 and 2.7. -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.4 ___ Python tracker

[issue22516] Windows Installer won't - even when using "just for me"option

2015-03-21 Thread Ned Deily
Ned Deily added the comment: This issue seems to be expanding widely in scope and it is not at all clear to me what actionable items would come out of it. It started as a very Window-specific problem and now seems to somehow be being extended to the whole Python ecosphere. What about the OS

[issue22516] Windows Installer won't - even when using "just for me"option

2015-03-21 Thread Mark Lawrence
Mark Lawrence added the comment: No this is not a good forum for this discussion. Python-dev or ideas please, to be followed up by a PEP I'd guess. -- ___ Python tracker ___ __

[issue22516] Windows Installer won't - even when using "just for me"option

2015-03-21 Thread Steve Dower
Steve Dower added the comment: Yeah, this is starting to get out of hand. I'm quite happy to leave things sit until the language summit, when we should have a broad enough representation to make a start. After that it'll get to python-dev before anything major is decided, but the brainstorming

[issue23159] argparse: Provide equivalent of optparse.OptionParser.{option_groups, option_list, get_option}

2015-03-21 Thread paul j3
paul j3 added the comment: The attached file subclasses ArgumentParser, explores how these optparse methods might be added to argparse. The __name__ section demonstrates how they might be used. argparse differs from optparse in a number of ways: - all actions are included in the parser._acti

[issue23735] Readline not adjusting width after resize with 6.3

2015-03-21 Thread Carlos Pita
Carlos Pita added the comment: Chet again: Here's the story from the top. Prior to readline-6.3, readline could `steal' signals from the calling application in the sense that readline's signal handler got a crack at all signals in which readline was interested before the application did. Now, t

[issue23736] "make test" on clean py3 install on CentOS 6.2 - 2 tests fail

2015-03-21 Thread John Nagle
New submission from John Nagle: Installing Python 3.4.2 on CentOS 6. Clean install. Using procedure in README file: ./configure make make test 2 tests fail in "make test" The first one is because the FTP client test is trying to test against a site that is long gone, the Digital Equipment C

[issue23735] Readline not adjusting width after resize with 6.3

2015-03-21 Thread R. David Murray
R. David Murray added the comment: If it used to handle the signal and then re-raise it, why doesn't it now set its flag and then re-raise the signal? (I also don't understand why the API isn't that the application takes back the signal handler if it needs it if it is using readline, but I'm

[issue22516] Windows Installer won't - even when using "just for me"option

2015-03-21 Thread Nick Coghlan
Nick Coghlan added the comment: Right, I mostly borrowed the issue as a public channel that could reach folks already invested in the problem space, without needing to tidy things up sufficiently to make them coherent for a more general audience on python-dev or python-ideas. As Steve says, w

[issue23736] "make test" on clean py3 install on CentOS 6.2 - 2 tests fail

2015-03-21 Thread R. David Murray
R. David Murray added the comment: The first test passes for me (although granted we should move that test to a psf hosted target, but we're slowly working on that general issue). The second is a bug in readline (see issue 19884). -- nosy: +r.david.murray resolution: -> duplicate stag

[issue23735] Readline not adjusting width after resize with 6.3

2015-03-21 Thread Thomas Kluyver
Changes by Thomas Kluyver : -- nosy: +takluyver ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue23736] "make test" on clean py3 install on CentOS 6.2 - 2 tests fail

2015-03-21 Thread Ned Deily
Ned Deily added the comment: The test_ftp connection timeout error failure (seen on some platforms) is a duplicate of Issue22289. The test_readline failure is a duplicate of, among others, Issue22647 and is believed to no longer occur with the current Python 3.4.3 (released 2015-02-25) and a

[issue1191964] add non-blocking read and write methods to subprocess.Popen

2015-03-21 Thread Josiah Carlson
Josiah Carlson added the comment: Okay, I'm sorry for falling asleep at the wheel on this. At this point, I don't expect this to go in for 3.5 - but if it has a chance, I'll do what I need to do to get it there. Let me know. I agree with the .communicate() not raising on broken pipe, and read

[issue23737] web course

2015-03-21 Thread bintang raksaguna
New submission from bintang raksaguna: href="http://winstarlink.com/tempat-kursus-website-seo-desain-grafis-favorit-2015-di-jakarta/";>Tempat Kursus website, SEO, Desain Grafis Favorit http://winstarlink.com/tempat-kursus-website-seo-desain-grafis-favorit-2015-di-jakarta/";>Tempat Kursus websit

[issue23737] web course

2015-03-21 Thread Ezio Melotti
Changes by Ezio Melotti : -- hgrepos: -302 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue23737] spam

2015-03-21 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> not a bug stage: -> resolved status: open -> closed title: web course -> spam ___ Python tracker ___ ___

[issue23737] web course

2015-03-21 Thread Ezio Melotti
Changes by Ezio Melotti : -- Removed message: http://bugs.python.org/msg238875 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue20181] Derby #12: Convert 50 sites to Argument Clinic across 4 files

2015-03-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch for unicodedata. -- keywords: +patch nosy: +serhiy.storchaka Added file: http://bugs.python.org/file38630/unicodedata_clinic.patch ___ Python tracker

[issue23633] Improve py launcher help, index, and doc

2015-03-21 Thread Nick Coghlan
Nick Coghlan added the comment: Given its Windows specific nature, I'll always defer to Steve and the other Windows devs when it comes to the launcher. My main involvement (aside from general mailing list commentary) was asking Vinay to bring the independently distributed version under the PyP

[issue23642] Interaction of ModuleSpec and C Extension Modules

2015-03-21 Thread Nick Coghlan
Nick Coghlan added the comment: Added Petr to the nosy list here as well. Petr - this is the kind of discrepancy I'm hoping that PEP 489 can help remedy, so it may make for a good test case :) -- nosy: +encukou ___ Python tracker

[issue6422] timeit called from within Python should allow autoranging

2015-03-21 Thread Nick Coghlan
Nick Coghlan added the comment: The current patch moves print operations inside timeit() and repeat(), instead of leaving the main() function as the only one with side effects. My counter-proposal was to instead extract the current main functionality out into a side-effect free public API of i

<    1   2