[issue1926] NNTPS support in nntplib

2010-11-02 Thread Antoine Pitrou
Antoine Pitrou added the comment: > > * the command-line option for the SSLContext won't work, since a > > context is a custom object, not a string; I would rework this part > > anyway, since I don't think separate options for the "SSL host" are > > useful (I'd rather add a SSL-enabling flag; al

[issue10263] "python -m site" does not print path details

2010-11-02 Thread Ned Deily
Ned Deily added the comment: The issue here is not unique to OS X. I see the same behavior on Linux with a built-from-source Python 3.2a3 and Distribute 0.6.14. (As I noted earlier, Debian and presumably various other distributors package a patched version of setuptools / Distribute which doe

[issue10171] Ugly buttons in some Tkinter objects in Windows

2010-11-02 Thread Éric Araujo
Éric Araujo added the comment: Thanks for hunting that down. Agreed about closing. I have no inkling about the Tcl development process. Can you report the bug to them? -- resolution: -> invalid stage: -> committed/rejected status: open -> closed __

[issue10171] Ugly buttons in some Tkinter objects in Windows

2010-11-02 Thread Rafe Kettler
Rafe Kettler added the comment: I don't know anything about the Tcl development process either. Luckily, Tk is hosted on SourceForge so it was just a matter of adding a ticket to their issue tracker. Hopefully it'll get fixed quickly and the fix will percolate down into Tkinter. --

[issue10173] Don't pickle TestCase instances in test_multiprocessing

2010-11-02 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed in r86130 (3.2), r86131 (2.7) and r86132 (3.1). -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue10273] Clean-up Unittest API

2010-11-02 Thread Raymond Hettinger
Raymond Hettinger added the comment: After discussion on python-dev, it seems that API lock-in precludes any change to the package structure. So, the main proposals left are the addition of new better aliases for some of the functions and changing to the docs so that the new name is clear:

[issue1926] NNTPS support in nntplib

2010-11-02 Thread Andrew Vant
Andrew Vant added the comment: On 2 Nov 2010 at 23:22, Antoine Pitrou wrote: > I'm talking about the code under "if __name__ == '__main__'". > Specifically the "-c" option for specifying an SSL context. Now I feel silly. Partly because of the mistake, partly because I did test_nntplib.py last

[issue10215] Mac Python 3.1 installer does less than earlier installers

2010-11-02 Thread Bruce Sherwood
Bruce Sherwood added the comment: Now I understand what you're getting at; I didn't realize that you were aiming at the possible distinction between 3 and 3.1. Yes, this is what bothered me and prompted my original posting. Python 3.1 goes into the same framework as the 2.x versions. Inciden

[issue10181] get_shape0 in memoryobject.c not checked for error return

2010-11-02 Thread Roger Upole
Roger Upole added the comment: The culprit wrt copying Py_buffer structs seems mainly to be dup_buffer, which is called in memory_getbuf. This seems unnecessary in the case where there's an underlying object and it has returned the view thru its own tp_as_buffer. The underlying object at th

[issue10273] Clean-up Unittest API

2010-11-02 Thread R. David Murray
R. David Murray added the comment: I don't think assertLE is enough of an improvement over assertLessEqual to be worth adding yet more deprecated names to unittest. So I'm -0 on this change in general. (I'd be -1 except that it would be kind of nice to have the names be shorter :) If the ch

[issue10281] Exception raised when an NNTP overview field is absent

2010-11-02 Thread R. David Murray
R. David Murray added the comment: My conclusion in working on the email package is that only the first space after the ':', if it exists, should be stripped. That is, even though the RFC (for email) reads as if the space after the colon is part of the value, in practice it is part of the de

[issue10281] Exception raised when an NNTP overview field is absent

2010-11-02 Thread Raymond Hettinger
Raymond Hettinger added the comment: Besides being shorter, the advantages of assertLE are consistent with the rich comparison method names, no worries about Than, no camel casing ambiguities, no pluralization or other nmemonic issues (LessThanEqual or LessThanEquals or LessThanOrEqual or Les

[issue10273] Clean-up Unittest API

2010-11-02 Thread Raymond Hettinger
Raymond Hettinger added the comment: Besides being shorter, the advantages of assertLE are consistent with the rich comparison method names, no worries about Than, no camel casing ambiguities, no pluralization or other nmemonic issues (LessThanEqual or LessThanEquals or LessThanOrEqual or Les

[issue10281] Exception raised when an NNTP overview field is absent

2010-11-02 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- Removed message: http://bugs.python.org/msg120300 ___ Python tracker ___ ___ Python-bugs-list mailin

[issue3605] Py_FatalError causes infinite loop

2010-11-02 Thread Roger Upole
Roger Upole added the comment: I know this has been closed, but I disagree with the fix. Py_FatalError is designed to give a clean exit with a readable error message when the state of the interpreter is known to be compromised. Calling *any* python functions or accessing *any* python interna

[issue10215] Mac Python 3.1 installer does less than earlier installers

2010-11-02 Thread Ned Deily
Ned Deily added the comment: It was a deliberate decision on Ronald's part to not modify the Versions/Current link in the Python framework when installing a Python 3.x version. As far as I know, the Current link is not used anywhere other than perhaps by Xcode when trying to link a Python fr

[issue10215] Mac Python 3.1 installer does less than earlier installers

2010-11-02 Thread Ned Deily
Ned Deily added the comment: It was a deliberate decision on Ronald's part to not modify the Versions/Current link in the Python framework when installing a Python 3.x version. As far as I know, the Current link is not used anywhere other than perhaps by Xcode when trying to link a Python fr

[issue10215] Mac Python 3.1 installer does less than earlier installers

2010-11-02 Thread Ned Deily
Changes by Ned Deily : -- Removed message: http://bugs.python.org/msg120303 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue7652] Merge C version of decimal into py3k.

2010-11-02 Thread Case Van Horsen
Case Van Horsen added the comment: Has the cdecimal branch kept up with the hash value changes in 3.2? Is there a still a chance that cdecimal could be merged into 3.2? -- nosy: +casevh ___ Python tracker

[issue8998] add crypto routines to stdlib

2010-11-02 Thread Devin Cook
Devin Cook added the comment: It sounds like you may already have an idea of how you want the API structured, but just in case you're still thinking about it here's another API to look at that I think focuses on exactly what you were highlighting as priorities (sane defaults, easy to use): ke

[issue10215] Mac Python 3.1 installer does less than earlier installers

2010-11-02 Thread Bruce Sherwood
Bruce Sherwood added the comment: Thanks for the detailed explanation. What had not occurred to me was to read the README file that came with the installer. I made the mistake (that may be made by others) of assuming continuity with installer policy, especially since the installation location

[issue10295] _socket.pyd uses winsock2, select.pyd uses winsock 1

2010-11-02 Thread Kristján Valur Jónsson
New submission from Kristján Valur Jónsson : These two socket modules link to a different winsock api, thus pulling two potentially incompatible dlls in to the process. There is no guarantee that they interact. I'll see if there is a simple patch for select module -- components: IO m

[issue10295] _socket.pyd uses winsock2, select.pyd uses winsock 1

2010-11-02 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Here is a patch -- keywords: +patch Added file: http://bugs.python.org/file19475/select.patch ___ Python tracker ___ __

[issue2001] Pydoc interactive browsing enhancement

2010-11-02 Thread Ron Adam
Changes by Ron Adam : Removed file: http://bugs.python.org/file16517/pydoc_gui.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue2001] Pydoc interactive browsing enhancement

2010-11-02 Thread Ron Adam
Changes by Ron Adam : Removed file: http://bugs.python.org/file18165/pydoc_server3.diff ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue2001] Pydoc interactive browsing enhancement

2010-11-02 Thread Ron Adam
Changes by Ron Adam : Removed file: http://bugs.python.org/file18271/pydoc_server4.diff ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue2001] Pydoc interactive browsing enhancement

2010-11-02 Thread Ron Adam
Ron Adam added the comment: Here you go Nick. One file with Underscores for the new class's and functions. Where there was some overlap in names, like where some of the older server class's were reused, but don't have exactly the same behavior, I started those with underscores also. This s

<    1   2