[issue17124] import subprocess hangs for ~25 seconds, time.py file in dir - py 2.7.3, 2.6.6

2013-02-04 Thread Ian Cordasco
Ian Cordasco added the comment: Dave, at some point during the import of subprocess the time module is apparently imported. Because of how imports work, it is importing your local copy instead of the standard library version. I would wager money that if you ran time python time.py (on your

[issue17128] OS X system openssl deprecated - installer should build local libssl

2013-02-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm not sure if it is worthwhile to switch right now. Apple does deprecate the use of OpenSSL, but there version does offer a feature that's not in the default tree: it verifies SSL certificates against the CA list in the system keychain. This means

[issue17121] SSH upload for distutils

2013-02-04 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- versions: -Python 2.6, Python 2.7, Python 3.2, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17121 ___

[issue12226] use HTTPS by default for uploading packages to pypi

2013-02-04 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- assignee: tarek - eric.araujo priority: release blocker - high ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12226 ___

[issue16555] Add es_cu to locale aliases

2013-02-04 Thread Éric Araujo
Éric Araujo added the comment: They come from the X.org project. See comments in http://hg.python.org/cpython/file/default/Lib/locale.py#l601 I had forgotten there was a makelocalealias.py script; maybe we could run it instead of adding an entry manually. --

[issue16203] Proposal: add re.fullmatch() method

2013-02-04 Thread Matthew Barnett
Matthew Barnett added the comment: I've attached a patch. -- Added file: http://bugs.python.org/file28955/issue16203_mrab.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16203 ___

[issue16555] Add es_cu to locale aliases

2013-02-04 Thread Benjamin Peterson
Benjamin Peterson added the comment: Yes, please. See what makelocalealias.py does. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16555 ___ ___

[issue16555] Add es_cu to locale aliases

2013-02-04 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Éric Araujo wrote: Éric Araujo added the comment: They come from the X.org project. See comments in http://hg.python.org/cpython/file/default/Lib/locale.py#l601 I had forgotten there was a makelocalealias.py script; maybe we could run it

[issue17128] OS X system openssl deprecated - installer should build local libssl

2013-02-04 Thread Ned Deily
Ned Deily added the comment: Yes, as we've discussed, using the Apple Crypto APIs would be nice longer-term assuming the compatibility issues can be managed: the set of available APIs appear to have been evolving over the past several OS X releases. But moving away from openssl seems out of

[issue17013] Allow waiting on a mock

2013-02-04 Thread Michael Foord
Michael Foord added the comment: There is a similar feature request on the mock issue tracker: http://code.google.com/p/mock/issues/detail?id=189 I prefer this proposal to the other one though. (Although technically allowing a wait for multiple calls is more flexible.) --

[issue10365] IDLE Crashes on File Open Dialog when code window closed before other file opened

2013-02-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: It seems like a logic error to try to remove something that is not there. But it is not obvious from the traceback that your problem has anything to do with *opening* a file. Unbinding should only happen when *closing* a file. So I suspect this is a different

[issue16555] Add es_cu to locale aliases

2013-02-04 Thread Berker Peksag
Berker Peksag added the comment: The es_CU locale has been added to GNU libc (in version 2.15)[1], but Tools/i18n/makelocalealias.py script uses the /usr/share/X11/locale/locale.alias file to generate the locale_alias dictionary. I think /usr/share/X11/locale/locale.alias needs to be updated

[issue16137] Using time.asctime() with an array with negative tm_hour causes Python Crash.

2013-02-04 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Benjamin, I am assigning this to you because 2.7.4 release is probably the last chance to do something about this behavior in 2.7 series. I am tentatively resolving this as won't fix. In 3.x, we decided that well defined behavior is more important

[issue6696] Profile objects should be documented

2013-02-04 Thread Guido van Rossum
Guido van Rossum added the comment: Can someone review Thomas's patch? It's nearly a year old... I just discovered this same issue. -- nosy: +gvanrossum ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6696

[issue17130] Add runcall() function to profile.py and cProfile.py

2013-02-04 Thread Guido van Rossum
New submission from Guido van Rossum: The profile module exports convenience functions for run() and runctx(), which wrap the corresponding methods of the Profile object. But perhaps the most useful method, runcall(), is not wrapped. :-( -- messages: 181403 nosy: gvanrossum priority:

[issue17121] SSH upload for distutils

2013-02-04 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: -- nosy: +jcea ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17121 ___ ___ Python-bugs-list mailing list

[issue6696] Profile objects should be documented

2013-02-04 Thread Éric Araujo
Éric Araujo added the comment: I learned a lot of that stuff recently thanks to a tutorial from Greg Ward. Reviewing the patch now. -- stage: needs patch - patch review versions: +Python 3.4 ___ Python tracker rep...@bugs.python.org

[issue17121] SSH upload for distutils

2013-02-04 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Python 2.6 can get remote certificate and compute a hash of it, and compare that hash with a known fingerprint. This is what mercurial does. No proper certificate chain, but secure as far as the PYPI certificate doesn't change. This would be not a final

[issue10365] IDLE Crashes on File Open Dialog when code window closed before other file opened

2013-02-04 Thread Roger Serwy
Roger Serwy added the comment: Patrick, see Issue8900. It described your problem. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10365 ___ ___

[issue6696] Profile objects should be documented

2013-02-04 Thread Éric Araujo
Éric Araujo added the comment: Tom, I’m sory your contribution was ignored, and I hope you still get Python bugs email. The patch is great. I made comments about contents and form on the code review site; you can follow the “review” link in the list of files on the top of this page if you

[issue17128] OS X system openssl deprecated - installer should build local libssl

2013-02-04 Thread Éric Araujo
Éric Araujo added the comment: Using the CA bundle from the OS sounds great, not only for Macs :) -- nosy: +eric.araujo, pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17128 ___

[issue16555] Add es_cu to locale aliases

2013-02-04 Thread Éric Araujo
Éric Araujo added the comment: On Debian testing, I get a few changes that look like fixes but not es_CU yet: @@ -807,0 +818,1 @@ locale_alias = { +'bokm\xef\xbf\xbd': 'nb_NO.ISO8859-1', @@ -822,0 +834,1 @@ locale_alias = { +'c.ascii':

[issue17128] OS X system openssl deprecated - installer should build local libssl

2013-02-04 Thread Ned Deily
Ned Deily added the comment: Somewhat coincidentally, Issue17129 addresses the topic of certificate management across multiple platforms. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17128

[issue17129] Include CA bundle and provide access to system's CA

2013-02-04 Thread Ned Deily
Ned Deily added the comment: FYI, at the moment, the PSF OS X installers dynamically link with the operating system supplied libssl and use its CA management policies. Issue17128 proposes changing that because Apple has deprecated the use of the system openssl in OS X. -- nosy:

[issue17129] Include CA bundle and provide access to system's CA

2013-02-04 Thread Jesús Cea Avión
Changes by Jesús Cea Avión j...@jcea.es: -- nosy: +jcea ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17129 ___ ___ Python-bugs-list mailing list

[issue16137] Using time.asctime() with an array with negative tm_hour causes Python Crash.

2013-02-04 Thread Benjamin Peterson
Benjamin Peterson added the comment: This is long behavior standing, which we can leave in 2.x. -- status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16137 ___

[issue10365] IDLE Crashes on File Open Dialog when code window closed before other file opened

2013-02-04 Thread Patrick
Patrick added the comment: Thanks for the pointer to the other issue. It looks spot on. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10365 ___

[issue13655] Python SSL stack doesn't have a default CA Store

2013-02-04 Thread Éric Araujo
Éric Araujo added the comment: I propose to change the scope of this request to: ssl module should provide a way to access the OS CA bundle. -- versions: +Python 3.4 -Python 3.3 ___ Python tracker rep...@bugs.python.org

[issue17129] Include CA bundle and provide access to system's CA

2013-02-04 Thread Éric Araujo
Éric Araujo added the comment: Agree this is a duplicate. I also think it’s a feature request. -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17129 ___

[issue8900] IDLE crashes if Preference set to At Startup - Open Edit Window

2013-02-04 Thread Patrick
Patrick added the comment: I am seeing this as well. It does not repro 100% of the time, but frequently enough that its hard to get anything done. My repro is a little simpler and might help understanding the fix. Win7 Python 3.3 I start IDLE normally from the shortcut in the install. Ctrl-N

[issue6696] Profile objects should be documented

2013-02-04 Thread Guido van Rossum
Guido van Rossum added the comment: Eric, you could also check it in with your own changes added. How far can we backport docs? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6696 ___

[issue6696] Profile objects should be documented

2013-02-04 Thread Éric Araujo
Éric Araujo added the comment: 2.7 and 3.2. I’ll wait a few days to let Thomas get the email and reply if he wants. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6696 ___

[issue8900] IDLE crashes if Preference set to At Startup - Open Edit Window

2013-02-04 Thread Bruce Sherwood
Bruce Sherwood added the comment: For what it's worth (maybe not much?), the version of IDLE produced by Guilherme Polo in the 2009 Google Summer of Code, which VPython (vpython.org) uses under the name VIDLE, does not have any problem with starting with an edit window and in fact I always use

[issue17128] OS X system openssl deprecated - installer should build local libssl

2013-02-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: Replacing openssl by the supported crypto api's is something for 3.4 or even 3.5. There is a way to keep the current functionality while still shipping a build of openssl: apply the patch that implements the feature to the upstream version when building it

[issue16991] Add OrderedDict written in C

2013-02-04 Thread Eric Snow
Eric Snow added the comment: Here's an updated patch. I still have some ref-counting issues, but the patch is much closer to what I expect will be the final version. At this point it passes all the main unit tests (segfaults in some of the supplemental Mapping tests). One key thing is that

[issue16991] Add OrderedDict written in C

2013-02-04 Thread Eric Snow
Changes by Eric Snow ericsnowcurren...@gmail.com: Removed file: http://bugs.python.org/file28762/odict.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16991 ___

[issue16991] Add OrderedDict written in C

2013-02-04 Thread Eric Snow
Eric Snow added the comment: Looks like I didn't get the patch lined up to tip so the review link isn't showing up. I'll have to fix that tomorrow. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16991

[issue17076] shutil.copytree failing on xattr-less filesystems (like NFS)

2013-02-04 Thread Hynek Schlawack
Changes by Hynek Schlawack h...@ox.cx: -- versions: +Python 3.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17076 ___ ___ Python-bugs-list

[issue17076] shutil.copytree failing on xattr-less filesystems (like NFS)

2013-02-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 47c65639390d by Hynek Schlawack in branch '3.3': #17076: Make copying of xattrs more permissive of missing FS support http://hg.python.org/cpython/rev/47c65639390d New changeset 7ccdbd1cd213 by Hynek Schlawack in branch 'default': #17076: Make

<    1   2