[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 copyi

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

2013-02-04 Thread Hynek Schlawack
Changes by Hynek Schlawack : -- versions: +Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[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 ___ __

[issue16991] Add OrderedDict written in C

2013-02-04 Thread Eric Snow
Changes by Eric Snow : Removed file: http://bugs.python.org/file28762/odict.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[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

[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 (

[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 it

[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 ___

[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 ___

[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

[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 ___ _

[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

[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 ___ ___ Python-bugs-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 ___ __

[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 : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[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: +ned.

[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 ___ _

[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': 'C'

[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 ___ ___

[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 di

[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 ___ ___ Python-bugs-list maili

[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" so

[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 __

[issue17121] SSH upload for distutils

2013-02-04 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[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:

[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 ___

[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 th

[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 to

[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

[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.) -- ___

[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 s

[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 >

[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 ___ ___ Python-bugs-list mai

[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 ___ ___

[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. --

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

2013-02-04 Thread Éric Araujo
Changes by Éric Araujo : -- assignee: tarek -> eric.araujo priority: release blocker -> high ___ Python tracker ___ ___ Python-bugs-li

[issue17121] SSH upload for distutils

2013-02-04 Thread Éric Araujo
Changes by Éric Araujo : -- versions: -Python 2.6, Python 2.7, Python 3.2, Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mai

[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 that

[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 scr

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

2013-02-04 Thread Charles-François Natali
Charles-François Natali added the comment: You happen to have a script named time.py, so when the subprocess module is imported, it imports this script instead of the correct time module. Nothing is wrong, closing. -- nosy: +neologix resolution: -> invalid stage: -> committed/rejected

[issue17121] SSH upload for distutils

2013-02-04 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- nosy: -gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

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

2013-02-04 Thread Benjamin Peterson
Benjamin Peterson added the comment: As you are the MacOSX expert, I'm going to defer your judgement (and/or Ronald's). I don't think the release will be for several days at least, so you should have time to test. -- ___ Python tracker

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

2013-02-04 Thread Ed Campbell
Changes by Ed Campbell : -- nosy: +esc24 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue17124] import subprocess hangs for ~25 seconds, 700+ files in dir - py 2.7.3, & 2.6.6

2013-02-04 Thread Dave Jones
Dave Jones added the comment: Hello Ian. Thank you for the reply. As I imagine you understand, I delete the "time.pyc" file every time it comes back. That being said, there *is* a "time.py" script in there from some testing I was doing: [jonesda0@toshiba pycode]$ ls -1tr *.py* | egrep "sp|ti

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

2013-02-04 Thread Dave Jones
Dave Jones added the comment: Tried to edit subject to make it easier to search -- title: import subprocess hangs for ~25 seconds, 700+ files in dir - py 2.7.3, & 2.6.6 -> import subprocess hangs for ~25 seconds, time.py file in dir - py 2.7.3, & 2.6.6

[issue16811] email.message.Message flatten dies of list index out of range

2013-02-04 Thread R. David Murray
R. David Murray added the comment: Fixed, thanks. There are some other issues with folding values consisting of only blanks, but I'll deal with that in the context of other issues. With this fix the new folding algorithm works at least as well as the old folding algorithm on blank values. -

[issue16811] email.message.Message flatten dies of list index out of range

2013-02-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset e64b74227198 by R David Murray in branch '3.3': #16811: Fix folding of headers with no value in provisional policies. http://hg.python.org/cpython/rev/e64b74227198 New changeset fe7f3e2e49ce by R David Murray in branch 'default': Merge #16811: Fix f

[issue17121] SSH upload for distutils

2013-02-04 Thread Benjamin Peterson
Benjamin Peterson added the comment: Too much of a new feature IMO. -- priority: release blocker -> normal ___ Python tracker ___ ___

[issue2175] Expat sax parser silently ignores the InputSource protocol

2013-02-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch, which made xml.sax.xmlreader and related utilities to support character stream. A lot of new tests added (including Yitz Gale's tests from issue1483). Some old tests fixed (they were used text stream as byte stream, this doesn't work in gene

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

2013-02-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Shouldn't it be a duplicate of issue13655? -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-l

[issue17121] SSH upload for distutils

2013-02-04 Thread Christian Heimes
Christian Heimes added the comment: Perhaps a tiny bit. ;) My brain is in paranoid mode ... -- ___ Python tracker ___ ___ Python-bugs-

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

2013-02-04 Thread Christian Heimes
Changes by Christian Heimes : -- dependencies: +Include CA bundle and provide access to system's CA ___ Python tracker ___ ___ Python-

[issue12502] 100% cpu usage when using asyncore with UNIX socket

2013-02-04 Thread Benjamin Ash
Benjamin Ash added the comment: Ok, thanks for quick followup. I didn't realize that the patch for Python-3, sorry about that. The issue I had was due to never calling self.listen() in the constructor of my server (asyncore.dispatcher). If this is not done the CPU spikes to 100%. Thanks agai

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

2013-02-04 Thread Christian Heimes
New submission from Christian Heimes: For effective SSL server cert validation a bundle of trustworthy CA certs is required. Most system ship such a bundle but it's not always possible to access the bundle from Python / OpenSSL. Windows and Mac OS X come into my mind. wget and curl ship a copy

[issue17121] SSH upload for distutils

2013-02-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Yes, and why do you think this should be addressed in the next bugfix release? If HTTPS is so broken that you can't upload important data with it, then perhaps patching Python is not the most important thing to do? In other words: don't you think you're overre

[issue17121] SSH upload for distutils

2013-02-04 Thread Christian Heimes
Christian Heimes added the comment: Benjamin requested that I should set the priority of all tickets to 'release blocker' that needs be be addressed, discussed and possibly fixed for the upcoming releases. -- ___ Python tracker

[issue10517] test_concurrent_futures crashes with "--with-pydebug" on RHEL5 with "Fatal Python error: Invalid thread state for this thread"

2013-02-04 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue17069] HTTP result code in urllib2.urlopen() file object undocumented

2013-02-04 Thread Senthil Kumaran
Senthil Kumaran added the comment: Éric, thanks for the comment. URLopener and FancyURLopener is deprecated, so that reference to that can be removed from 3.4 (after removing the URLopener and FancyURLopener class). Rest of the patch can stay the same. -- _

[issue17107] test_sni in test_urllib2net could be enabled

2013-02-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks for the patch :) Since the test doesn't access a remote host (the version before it was skipped used to), I think it could be moved to test_urllib2_localnet. Also, the transient_internet() shouldn't be necessary. --

[issue17121] SSH upload for distutils

2013-02-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Wow. Can we calm down? Setting many feature requests as release blockers certainly won't magically solve issues. -- ___ Python tracker ___

[issue17124] import subprocess hangs for ~25 seconds, 700+ files in dir - py 2.7.3, & 2.6.6

2013-02-04 Thread Ian Cordasco
Ian Cordasco added the comment: Could you give us the contents of your time.py file? I wonder if there's something in that file that is causing the import to hang. It's the only reason I can think of as to why the time.pyc file shows up. Also, if you want to check before-hand, make a new direc

[issue17124] import subprocess hangs for ~25 seconds, 700+ files in dir - py 2.7.3, & 2.6.6

2013-02-04 Thread Ian Cordasco
Ian Cordasco added the comment: As a further note, on python 2.6, I just touched a file called time.py, and in the interpreter imported subprocess. It didn't hang because the file was empty but it did generate a pyc file. This is almost certainly the root of your problem. I doubt this is a cor

[issue17123] Add OCSP support to ssl module

2013-02-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Christian, I really don't agree this should be a release blocker, and especially not for bugfix branches. -- priority: release blocker -> normal ___ Python tracker ___

[issue17124] import subprocess hangs for ~25 seconds, 700+ files in dir - py 2.7.3, & 2.6.6

2013-02-04 Thread Dave Jones
Dave Jones added the comment: I think I found something but I do not know what it means. Everytime the import hangs, it seems to leave behind a "time.pyc" There are only 29 files in this directory. [jonesda0@linux-2py2 pycode]$ ls -1tr py5.py* py4.py* py3.py* py2.py* py1.py* print_func.py test.p

[issue17126] test_gdb fails

2013-02-04 Thread R. David Murray
R. David Murray added the comment: The autoloading error will be fixed in 2.7.4 (due out Real Soon Now, but not immediately). I've nosied the author, Dave Malcolm, to address the other issues. -- nosy: +dmalcolm, r.david.murray ___ Python tracker <

[issue1326841] SIGALRM alarm signal kills interpreter

2013-02-04 Thread ddve...@ucar.edu
ddve...@ucar.edu added the comment: Paul, I agree with you, this default behavior is painful. And in fact even the author of the test_socket case for the python regression suite agree with us (maybe even implicitly and by mistake, but regardless...) See Issue17085 for details -- nosy:

[issue13994] incomplete revert in 2.7 Distutils left two copies of customize_compiler

2013-02-04 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Thanks for getting this in, Eric ! -- ___ Python tracker ___ ___ Python-bugs-list mailing list U

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

2013-02-04 Thread Ned Deily
New submission from Ned Deily: Apple has deprecated use of openssl in OS X due to its unstable API between versions: "If your app depends on OpenSSL, you should compile OpenSSL yourself and statically link a known version of OpenSSL into your app" https://developer.apple.com/library/mac/#docu

[issue17127] multiprocessing.dummy.Pool does not accept maxtasksperchild argument

2013-02-04 Thread Noah Yetter
New submission from Noah Yetter: Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. The docs claim that "multiprocessing.dummy replicates the API of multiprocessing but is no more than a wra

[issue12502] 100% cpu usage when using asyncore with UNIX socket

2013-02-04 Thread Charles-François Natali
Charles-François Natali added the comment: > Using handle_accept() in my code and remembering to call listen() in my > asyncore.dispatcher server's constructor did the trick. > > I am not sure if we still have a bug here though, since if the subclass > doesn't define a proper handle_accept() we

[issue17123] Add OCSP support to ssl module

2013-02-04 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue17085] test_socket crashes the whole test suite

2013-02-04 Thread ddve...@ucar.edu
ddve...@ucar.edu added the comment: Just to see this test running to completion, I applied the following (ugly) patch: --- Lib/test/test_socket.py.orig2012-04-09 17:07:32.0 -0600 +++ Lib/test/test_socket.py 2013-02-03 06:56:11.778118985 -0700 @@ -14,7 +14,7 @@ import array imp

[issue17085] test_socket crashes the whole test suite

2013-02-04 Thread ddve...@ucar.edu
ddve...@ucar.edu added the comment: So I rebuild python withou tipc (basically deleting it from configure, since it cannot be "cleanly" avoided, see Issue17092). The 'sudo modprobe tipc' message of course disappears, but the uncaught alarm is still there, see below: ./python Lib/test/regrtest

[issue17092] Disable TIPC in configure

2013-02-04 Thread ddve...@ucar.edu
ddve...@ucar.edu added the comment: Ok, I'm closing this ticket, since it does not seem there is interested in fixing it. I still believe it would be a nice feature, but life is short, let's concentrate efforts on more useful things. Moreover (see Issue17085 for details) TIPC was not the root

[issue17115] __loader__ = None should be fine

2013-02-04 Thread Eric Snow
Eric Snow added the comment: > [document that] the language reference and importlib docs now supersede the > PEP Agreed. PEP 302 is even crustier now than it was a year ago and Barry's new import page in the language reference obviates the need for 302 as the de facto spec. --

[issue17115] __loader__ = None should be fine

2013-02-04 Thread Eric Snow
Eric Snow added the comment: > In all honesty I would like to tweak imp.new_module()/PyModule_Create()... +1 -- nosy: +eric.snow ___ Python tracker ___ _

[issue17117] Update importlib.util.module_for_loader/set_loader to set when __loader__ = None

2013-02-04 Thread Eric Snow
Eric Snow added the comment: +1 -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue17099] Raise ValueError when __loader__ not defined for importlib.find_loader()

2013-02-04 Thread Eric Snow
Eric Snow added the comment: My vote is for making this a ValueError in both cases (and amending the doc appropriately as well). The error amounts to the same thing: the module did not have loader (implicitly or explicitly). If someone wants to distinguish between the two they can explicitly

[issue15298] _sysconfigdata is generated in srcdir, not builddir

2013-02-04 Thread Ned Deily
Ned Deily added the comment: On OS X, Trent's fixes solved the bootstrap issue and _sysconfigdata.py is now created in buildir. Closing. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue16043] xmlrpc: gzip_decode has unlimited read()

2013-02-04 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +benjamin.peterson, georg.brandl, larry priority: critical -> release blocker ___ Python tracker ___ __

[issue16037] httplib: header parsing is not delimited

2013-02-04 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +benjamin.peterson, georg.brandl, larry priority: critical -> release blocker ___ Python tracker ___ __

[issue16042] smtplib: unlimited readline() from connection

2013-02-04 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +benjamin.peterson, georg.brandl, larry priority: critical -> release blocker ___ Python tracker ___ __

[issue16040] nntplib: unlimited readline() from connection

2013-02-04 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +benjamin.peterson, georg.brandl, larry priority: critical -> release blocker ___ Python tracker ___ __

[issue16041] poplib: unlimited readline() from connection

2013-02-04 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +benjamin.peterson, georg.brandl, larry priority: critical -> release blocker ___ Python tracker ___ __

[issue17121] SSH upload for distutils

2013-02-04 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +barry, benjamin.peterson, georg.brandl, larry priority: critical -> release blocker ___ Python tracker ___ ___

[issue16039] imaplib: unlimited readline() from connection

2013-02-04 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +benjamin.peterson, georg.brandl, larry priority: critical -> release blocker ___ Python tracker ___ __

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

2013-02-04 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +benjamin.peterson, georg.brandl, larry priority: normal -> release blocker versions: +Python 3.4 -Python 3.1 ___ Python tracker ___ __

[issue16038] ftplib: unlimited readline() from connection

2013-02-04 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +benjamin.peterson, georg.brandl priority: critical -> release blocker ___ Python tracker ___ _

[issue17123] Add OCSP support to ssl module

2013-02-04 Thread Christian Heimes
Christian Heimes added the comment: OCSP can prevent MITM attacks when the private server cert or CA cert got compromised or stolen somehow. -- ___ Python tracker ___ __

[issue17123] Add OCSP support to ssl module

2013-02-04 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +barry, benjamin.peterson, georg.brandl, larry priority: high -> release blocker ___ Python tracker ___ ___

[issue13156] _PyGILState_Reinit assumes auto thread state will always exist which is not true.

2013-02-04 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue17123] Add OCSP support to ssl module

2013-02-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Can you explain how OCSP helps prevent MITM attacks? - Mail original - > De: "Christian Heimes" > À: pit...@free.fr > Envoyé: Lundi 4 Février 2013 17:14:32 > Objet: [issue17123] Add OCSP support to ssl module > > > New submission from Christian Heimes

[issue17125] tokenizer.tokenize passes a bytes object to str.startswith

2013-02-04 Thread R. David Murray
R. David Murray added the comment: The docs could certainly be more explicit...currently they state that tokenize is *detecting* the encoding of the file, which *implies* but does not make explicit that the input must be binary, not text. The doc problem will get fixed as part of the fix to is

[issue17124] import subprocess hangs for ~25 seconds, 700+ files in dir - py 2.7.3, & 2.6.6

2013-02-04 Thread Dave Jones
Dave Jones added the comment: Distros tested with include Funduntu 2012-4, Fuduntu 2013-1, Fedora 17, Scientific Linux 6.3 & OpenSUSE 12.2 (all 32-bit) on the same hardware. -- ___ Python tracker _

[issue17124] import subprocess hangs for ~25 seconds, 700+ files in dir - py 2.7.3, & 2.6.6

2013-02-04 Thread Dave Jones
Dave Jones added the comment: That line (1) seems to pop up every time the subprocess call "hangs" -- ___ Python tracker ___ _

[issue17125] tokenizer.tokenize passes a bytes object to str.startswith

2013-02-04 Thread Tyler Crompton
New submission from Tyler Crompton: Line 402 in lib/python3.3/tokenize.py, contains the following line: if first.startswith(BOM_UTF8): BOM_UTF8 is a bytes object. str.startswith does not accept bytes objects. I was able to use tokenize.tokenize only after making the following changes: Cha

[issue17124] import subprocess hangs for ~25 seconds, 700+ files in dir - py 2.7.3, & 2.6.6

2013-02-04 Thread Dave Jones
New submission from Dave Jones: import subprocess hangs for ~25 seconds, 700+ files in dir - py 2.7.3, & 2.6.6 I'm running this test from a LiveCD to make sure the environment is relatively clean. -- localhost Desktop # python --version Python 2.7.3 --- <<>> lo

[issue12502] 100% cpu usage when using asyncore with UNIX socket

2013-02-04 Thread Benjamin Ash
Benjamin Ash added the comment: After doing a bit more testing, I was able to prevent the problem from occurring in asyncore_test.py with the following patch: --- /proc/self/fd/112013-02-04 11:24:41.298347199 -0500 +++ asyncore_test.py2013-02-04 11:24:40.393318513 -0500 @@ -19,10 +19,18

[issue17089] Expat parser parses strings only when XML encoding is UTF-8

2013-02-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3cc2a2de36e3 by Serhiy Storchaka in branch '3.2': Issue #17089: Expat parser now correctly works with string input not only when http://hg.python.org/cpython/rev/3cc2a2de36e3 New changeset 6c27b0e09c43 by Serhiy Storchaka in branch '3.3': Issue #170

[issue17121] SSH upload for distutils

2013-02-04 Thread Christian Heimes
Christian Heimes added the comment: And there is OCSP. I'm getting sec_error_ocsp_invalid_signing_cert for https://pypi.python.org/pypi. I haven't been able to do a successful HTTPS request from Firefox to PyPI all day. -- ___ Python tracker

  1   2   >