[issue17621] Create a lazy import loader mixin

2014-03-22 Thread Brett Cannon
Brett Cannon added the comment: Here is a new patch that addresses Eric's comments and also fills in some holes that I realized I had while fixing things up. PTAL. -- Added file: http://bugs.python.org/file34575/lazy_loader.diff ___ Python tracker <

[issue17621] Create a lazy import loader mixin

2014-03-22 Thread Brett Cannon
Changes by Brett Cannon : Removed file: http://bugs.python.org/file34575/lazy_loader.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue17621] Create a lazy import loader mixin

2014-03-22 Thread Brett Cannon
Changes by Brett Cannon : Added file: http://bugs.python.org/file34576/lazy_loader.diff ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue2552] test_ctypes failed Python 2.6a2 Solaris 10 SUN C

2014-03-22 Thread Mark Lawrence
Mark Lawrence added the comment: Given the title is this still relevant given that Oracle Solaris 11 is closed source? -- nosy: +BreamoreBoy ___ Python tracker ___ __

[issue21013] server-specific SSL context configuration

2014-03-22 Thread Donald Stufft
Donald Stufft added the comment: Attached is a new patch. It has: * Switches the protocol to SSLv23 so that we can negotiate a TLS1.1 or TLS1.2 connection. * Sets OP_CIPHER_SERVER_PREFERENCE for Purpose.CLIENT_AUTH so that our carefully selected cipher priority gives us better encryption and P

[issue21030] pip usable only by administrators on Windows

2014-03-22 Thread Ned Deily
Changes by Ned Deily : -- nosy: +loewis, zach.ware ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue1225584] crash in gcmodule.c on python reinitialization

2014-03-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: The initial test case was apparently fixed. It is not clear to me that the second, msg57834, is a supported use case. Nick, I know you are busy, but there is no C api category in the experts list. Any comment? Unless someone can identify a bug in current 2.7 o

[issue1225584] crash in gcmodule.c on python reinitialization

2014-03-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: Nick, please read my previous msg if you can find a moment. -- nosy: +ncoghlan ___ Python tracker ___

[issue6742] Embedding python into shared library crash on AIX

2014-03-22 Thread Mark Lawrence
Mark Lawrence added the comment: msg192851 states that this should be closed. If somebody agrees with that statement would they please do the honours. -- nosy: +BreamoreBoy ___ Python tracker _

[issue1516] make _ctypes work with non-gcc compilers

2014-03-22 Thread Mark Lawrence
Mark Lawrence added the comment: Given msg173279 from Greg Couch "I'm using supported compilers on all platforms now." can we close this issue or does Trent Nelson still have problems? -- nosy: +BreamoreBoy ___ Python tracker

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2014-03-22 Thread Mark Lawrence
Mark Lawrence added the comment: msg192795 says this is still an issue so I'm not sure why it's been set to languishing as it's only 18 months old. -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker

[issue1697175] winreg module for cygwin?

2014-03-22 Thread Mark Lawrence
Mark Lawrence added the comment: Is cygwin officially supported by Python core development? -- nosy: +BreamoreBoy, terry.reedy versions: +Python 3.5 -Python 3.2 ___ Python tracker

[issue21028] ElementTree objects should support all the same methods as Element objects

2014-03-22 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium title: ElementTree objects should support all the same methods are Element objects -> ElementTree objects should support all the same methods as Element objects ___ Python tracker

[issue21031] [patch] Add AlpineLinux to the platform module's supported distributions list

2014-03-22 Thread Elizabeth Myers
New submission from Elizabeth Myers: This patch adds support for the AlpineLinux distrubtion (http://alpinelinux.org) to the platform.linux_distributions function, e.g.: >>> platform.linux_distribution() ('alpine', '2.8.0_alpha2', '') Thoughts, feelings, and rotten tomatoes welcome :). --

[issue21032] Socket leak if HTTPConnection.getresponse() fails

2014-03-22 Thread Martin Panter
New submission from Martin Panter: Here is a regression test and patch to close the socket reader when a HTTP server causes getresponse() to fail, for instance if the server times out and drops the connection without sending any response. Without the patch the socket will only be closed by the

[issue21032] Socket leak if HTTPConnection.getresponse() fails

2014-03-22 Thread Martin Panter
Changes by Martin Panter : Added file: http://bugs.python.org/file34580/close.patch ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue21027] difflib new cli interface

2014-03-22 Thread Raymond Hettinger
Raymond Hettinger added the comment: This looks promising to me. I'll look in more detail shortly. -- assignee: -> rhettinger nosy: +rhettinger ___ Python tracker ___ _

[issue21031] [patch] Add AlpineLinux to the platform module's supported distributions list

2014-03-22 Thread Elizabeth Myers
Changes by Elizabeth Myers : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue21030] pip usable only by administrators on Windows

2014-03-22 Thread Christian Ullrich
Christian Ullrich added the comment: According to procmon, ensurepip first installs the bundled packages in $TEMP, then moves the resulting files to the Python installation directory. According to http://support.microsoft.com/kb/310316, a file that is moved within the same volume keeps its ori

<    1   2