[issue8998] add crypto routines to stdlib

2010-09-17 Thread Jean-Paul Calderone
Jean-Paul Calderone added the comment: What it will bring: APIs which aren't absolutely insane; full SSL support; RSA, DSA, ECDSA, Diffie-Hellman, EC Diffie-Hellman, AES, Triple DES, DES, RC2, RC4, SHA-1, SHA-256, SHA-384, SHA-512, MD2, MD5, HMAC: Common cryptographic algorithms used in publi

[issue8998] add crypto routines to stdlib

2010-09-17 Thread Dave Malcolm
Dave Malcolm added the comment: I should note that I can't touch anything to do with Elliptic Curve crypto. I don't know if I can comment on the reasons for that. -- ___ Python tracker ___

[issue8998] add crypto routines to stdlib

2010-09-17 Thread Jean-Paul Calderone
Jean-Paul Calderone added the comment: > I should note that I can't touch anything to do with Elliptic Curve crypto. > I don't know if I can comment on the reasons for that. Hopefully anything ECC related can be done separately. There's certainly no ECC APIs in Python now, so there would be

[issue8998] add crypto routines to stdlib

2010-09-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Le vendredi 17 septembre 2010 à 23:14 +, Dave Malcolm a écrit : > Dave Malcolm added the comment: > > On Fri, 2010-09-17 at 23:11 +, Antoine Pitrou wrote: > > Antoine Pitrou added the comment: > > > > > How about nss? As a bonus, this would also avo

[issue1730136] tkFont.__eq__ gives type error

2010-09-17 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Fixed in r84865. -- nosy: +amaury.forgeotdarc resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue8998] add crypto routines to stdlib

2010-09-17 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue8998] add crypto routines to stdlib

2010-09-17 Thread Dave Malcolm
Dave Malcolm added the comment: FWIW, one of my RH colleagues (John Dennis) has written a set of Python bindings for NSS: http://fedoraproject.org/wiki/Features/PythonNSS (Though that seems to me to be a slightly different thing to a general-purpose crypto lib that happens to be written usi

[issue767645] incorrect os.path.supports_unicode_filenames

2010-09-17 Thread STINNER Victor
STINNER Victor added the comment: > No problems noted with a quick test of posixpath_darwin.patch > on 10.6 so looks good. Ok thanks. Fix commited to 3.2 (r84866) and 2.7 (r84868). I kept my patch on macpath (supports_unicode_filenames=True) because it is still valid (even if it is not used)

[issue9441] increase logging handlers test coverage

2010-09-17 Thread Vinay Sajip
Vinay Sajip added the comment: Okay, I've temporarily commented out TimedRotatingFileHandlerTest tests, while I investigate further. Let's see how the buildbots cope now. -- resolution: fixed -> accepted stage: committed/rejected -> commit review __

[issue8589] test_warnings.CEnvironmentVariableTests.test_nonascii fails under an ascii terminal

2010-09-17 Thread STINNER Victor
STINNER Victor added the comment: I don't see any test_warnings anymore on http://code.google.com/p/bbreport/wiki/PythonBuildbotReport. Close this issue. -- status: open -> closed ___ Python tracker __

[issue8998] add crypto routines to stdlib

2010-09-17 Thread Gregory P. Smith
Gregory P. Smith added the comment: libtomcrypt is a _great_ library. That is what hashlib uses for the hash algorithms when OpenSSL is not available. But the _primary_ reason for using OpenSSL is that it is the defacto open source location for the best architecture specific implementations

[issue9552] ssl build under Windows always rebuilds OpenSSL

2010-09-17 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I hope attached patch will fix this. I used shutil.copy2 to retain modified time. (Actually, I tested on VS8.0 with equivalent change, I didn't test this file directly) -- keywords: +patch nosy: +ocean-city Added file: http://bugs.python.org/file189

[issue9552] ssl build under Windows always rebuilds OpenSSL

2010-09-17 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Here is the result of second run. -- ビルド開始: プロジェクト: _ssl, 構成: Debug Win32 -- ビルド前のイベントを実行しています... Can not find a suitable PERL: NO perl interpreters were found on this machine at all! Please install ActivePerl and ensure it appears on your path No

[issue9890] Visual C++ Runtime Library Error is there a fix?

2010-09-17 Thread Dylon
New submission from Dylon : I attempt to run the program (IDLE) after a fresh install of Python x86 on windows 7 32-bit and it gives me this error: "Runtime Error! Program: C:\Program Files\Python\pythonw.exe This application has requested the Runtime to terminate it in an unusual way. Please

[issue6627] threading.local() does not work with C-created threads

2010-09-17 Thread Nick Coghlan
Nick Coghlan added the comment: The suggestion in http://bugs.python.org/issue6627#msg116722 is a good one. This a case where the user may legitimately not realise that threading.local is stored in the *temporary* state created by ctypes rather than in something more persistent inside the int

[issue9808] Implement os.getlogin on Windows

2010-09-17 Thread Jon Anglin
Jon Anglin added the comment: The _countof(_x_) macro expands to something like this: sizeof(_x_)/sizeof(_x_[0]) This was an attempt by Microsoft to mitigate some buffer overrun issues. I have gotten in the habit of using it as it is less verbose. I have uploaded a new issue9808.diff f

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2010-09-17 Thread Matthew Barnett
Matthew Barnett added the comment: issue2636-20100918.zip is a new version of the regex module. I've added 'pos' and 'endpos' arguments to regex.sub and regex.subn and refactored a little. I can't think of any other features that need to be added or see any more speed improvements. Have I m

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-09-17 Thread Senthil Kumaran
Senthil Kumaran added the comment: I have skipped the mode tests on windows platforms, as they are not really applicable. Lets see the buildbots status and close the bug. -- ___ Python tracker _

[issue9842] Document ... used in recursive repr of containers

2010-09-17 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue9856] Change object.__format__(s) where s is non-empty to a DeprecationWarning

2010-09-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: Perhaps this could be expanded to "Deprecation warnings in 3.3" with release-blocker priority to list all 3.2 PendingDWs. Once changes are made, it could be retitled "Removals in 3.4", with a new "Deprecation warnings in 3.4" added. -- nosy: +terry.r

[issue9859] Add tests to verify API match of modules with 2 implementations

2010-09-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: +1 I presume you can use the experience with #9858 to either refine the program to have fewer false positives or refine the program doc to explain the possibility where such are unavoidable. (And as a lint-like metatest, I think false positives are better tha

[issue9871] IDLE dies when using some regex

2010-09-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: Verified as IDLE specific on WinXP, 3.1.2 With interpreter, I get >>> import re; re.findall(b"\x.{2}", b"sdds\xd8") ValueError: invalid \x escape In an IDLE Shell window, the window immediately disappears when I hit return and the taskbar button disappears ab

[issue9884] The 4th parameter of method always None or 0 on x64 Windows.

2010-09-17 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +theller ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue923697] SAX2 'property_encoding' feature not supported

2010-09-17 Thread Joseph Walton
Joseph Walton added the comment: The behaviour is unchanged in Python 3.1 and the sample program still fails. -- versions: +Python 3.1 ___ Python tracker ___ __

[issue1708652] Exact matching

2010-09-17 Thread Georg Brandl
Georg Brandl added the comment: I'm not sure it really is so useful that it warrants a new regex method. -- nosy: +georg.brandl ___ Python tracker ___

<    1   2