[issue1578269] Add os.link() and os.symlink() and os.path.islink() support for Windows

2010-02-09 Thread Jason R. Coombs
Changes by Jason R. Coombs : Removed file: http://bugs.python.org/file16193/windows symlink draft 23.patch ___ Python tracker ___ ___ Python

[issue1578269] Add os.link() and os.symlink() and os.path.islink() support for Windows

2010-02-09 Thread Jason R. Coombs
Changes by Jason R. Coombs : Removed file: http://bugs.python.org/file16194/windows symlink draft 24.patch ___ Python tracker ___ ___ Python

[issue1578269] Add os.link() and os.symlink() and os.path.islink() support for Windows

2010-02-09 Thread Jason R. Coombs
Changes by Jason R. Coombs : Removed file: http://bugs.python.org/file16197/smime.p7s ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue1160] Medium size regexp crashes python

2010-02-09 Thread Matthew Barnett
Matthew Barnett added the comment: As stated in msg73781, this is being addressed in issue #2636. My regex module handles the test case without complaint: >>> import regex >>> r = regex.compile('|'.join('%d'%x for x in range(7000))) >>> r.match("1000") <_regex.REGEX_Match object at 0x015D2920>

[issue3819] urllib2 sends Basic auth across redirects

2010-02-09 Thread David Fischer
David Fischer added the comment: I believe this bug affects urllib2 when it talks to the corporate single-sign-on solution Siteminder. Siteminder usually is installed as a web server module. When a request is made to the server (origin server), Siteminder issues a 302 redirect to a central au

[issue3819] urllib2 sends Basic auth across redirects

2010-02-09 Thread Senthil Kumaran
Senthil Kumaran added the comment: Ok, in order to fix this bug, urllib2 should only send the cookies and not send the auth info across the the redirects. Yup, let me take this up. -- assignee: -> orsenthil resolution: -> accepted ___ Python track

[issue1578269] Add os.link() and os.symlink() and os.path.islink() support for Windows

2010-02-09 Thread Brian Curtin
Brian Curtin added the comment: With patch #25, I get 6 test failures: test_glob, test_os, test_platform, test_posixpath, test_shutil, and test_tarfile. This is interesting because the failures are different depending on how I compile Python. Running in WOW64 (32-bit Python on 64-bit Windows

[issue7418] hashlib : the names of the different hash algorithms

2010-02-09 Thread Raymond Hettinger
Raymond Hettinger added the comment: I'll be taking a look at this patch during the sprints at Pycon. Will get back to you soonish :-) -- ___ Python tracker ___ ___

[issue7896] IDLE.app crashes when attempting to open a .py file

2010-02-09 Thread Ronald Oussoren
Ronald Oussoren added the comment: Do you use your an installer from python.org or your own build? The crashlog seems to indicate the latter (because of the Code Type). Which version of Tk are you using? Which OS release? I know there are issues with the system Tk 8.5 on OSX 10.6, although th

[issue7889] random produces different output on different architectures

2010-02-09 Thread Terrence Cole
Terrence Cole added the comment: Thank you for all the help! I'm glad to see that the use of hash() on buffer compatible objects is an actual gotcha and not just me being obtuse. Also, for those googling who, like me, won't be able to use 3.2's from_bytes until 3.2 is released in December, h

<    1   2