[issue1285086] urllib.quote is too slow

2009-02-12 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: If someone needs a faster quote(), it's probably easy to write an insanely fast C version... -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1285086

[issue404444] [IDLE] auto indent/parentheses

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Auto-indent and parenthesis matching already work, Tab triggers auto-completion, but indention can be increased/decreased with Ctrl + ] / Ctrl + [ -- nosy: +ajaksu2 resolution: later - out of date status: open - closed versions: +Python

[issue214033] re incompatibility in sre

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Jeffrey, Collin, thanks for reviewing. -- nosy: +ajaksu2 resolution: - out of date stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue433024] SRE: (?flag) isn't properly scoped

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +Major reworking of Python 2.5.2 re module versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue433024 ___

[issue433027] SRE: (?-flag) is not supported.

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +Major reworking of Python 2.5.2 re module versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue433027 ___

[issue444582] Finding programs in PATH, addition to os

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Library (Lib) -None nosy: +ajaksu2 stage: - test needed versions: +Python 2.7, Python 3.1 -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue444582

[issue459007] Document sys.path on Windows

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +ajaksu2 stage: - needs patch type: - behavior versions: +Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue459007 ___

[issue460474] codecs.StreamWriter: reset() on close()

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Library (Lib) -None nosy: +ajaksu2 stage: - test needed versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue460474

[issue231540] threads and profiler don't work together

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Confirmed as of (around) rev69500. -- nosy: +ajaksu2 stage: - test needed versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue231540

[issue4751] Patch for better thread support in hashlib

2009-02-12 Thread Lukas Lueg
Lukas Lueg knabberknusperh...@yahoo.de added the comment: Patch for 2.7 Added file: http://bugs.python.org/file13057/hashlibopenssl_gil_py27.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4751

[issue626452] Support RFC 2111 in email package

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Library (Lib) -None nosy: +ajaksu2 stage: - test needed versions: +Python 2.7 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue626452

[issue515074] Extended storage in new-style classes

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Seems very out of date. -- nosy: +ajaksu2 priority: normal - low stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue515074

[issue539907] Tkinter lock conflicts extension widgets

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: No reply from OP, will close unless someone argues against it. -- nosy: +ajaksu2 stage: - test needed versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue539907

[issue665336] win32 os.path.normpath not correct for leading slash cases

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Windows stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue665336

[issue513840] entity unescape for sgml/htmllib

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- keywords: +easy stage: - test needed versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue513840 ___

[issue539907] Tkinter lock conflicts extension widgets

2009-02-12 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: Why close ? It is still a valid feature request (with no patch yet). -- nosy: +gpolo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue539907

[issue539907] Tkinter lock conflicts extension widgets

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Leaving open, then :) Thanks! ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue539907 ___ ___

[issue460474] codecs.StreamWriter: reset() on close()

2009-02-12 Thread Marc-Andre Lemburg
Changes by Marc-Andre Lemburg m...@egenix.com: -- stage: test needed - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue460474 ___ ___

[issue5229] Documentation for super() neglects to say what super() actually does

2009-02-12 Thread David W. Lambert
Changes by David W. Lambert lamber...@corning.com: -- nosy: +LambertDW ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5229 ___ ___ Python-bugs-list

[issue918368] urllib doesn't correct server returned urls

2009-02-12 Thread John J Lee
John J Lee jj...@users.sourceforge.net added the comment: Mike's list is missing one more character, % itself. So, the replacement should be: quote(newurl, safe=%/:=?~#+!$,;'@()*[]) The replacement should be done in the .open() method, not in the code that handles redirects.

[issue918368] urllib doesn't correct server returned urls

2009-02-12 Thread John J Lee
John J Lee jj...@users.sourceforge.net added the comment: A suitable test would be to derive a urllib.URLOpener subclass that has an open_spam(url) method which records the URL. Then call .open(spam://) in the test and verify that the URL has been quoted.

[issue918368] urllib doesn't correct server returned urls

2009-02-12 Thread John J Lee
John J Lee jj...@users.sourceforge.net added the comment: Uh, that should have beeen something like .open(spam://example.com/%2E/) of course. ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue918368 ___

[issue3407] test_urllib2_localnet fails on MacOS X 10.4.11 (Intel)

2009-02-12 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: May be same as issue4666 ? -- nosy: +rpetrov ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3407 ___

[issue3745] _sha256 et al. encode to UTF-8 by default

2009-02-12 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: fixed in release30-maint r69555. sounds like its out of the question for 2.6. i will backport it to trunk. -- keywords: +26backport versions: -Python 2.6, Python 3.0 ___ Python tracker

[issue5230] pydoc reports misleading failure if target module raises an ImportError

2009-02-12 Thread Jean-Paul Calderone
New submission from Jean-Paul Calderone exar...@divmod.com: If pydoc is used to try to look up the documentation for a module which does not exist, this is reported reasonably: exar...@charm:~$ pydoc foobarbaz no Python documentation found for 'foobarbaz' exar...@charm:~$

[issue5186] Reduce hash collisions for objects with no __hash__ method

2009-02-12 Thread Adam Olsen
Adam Olsen rha...@gmail.com added the comment: Antoine, x ^= x4 has a higher collision rate than just a rotate. However, it's still lower than a statistically random hash. If you modify the benchmark to randomly discard 90% of its contents this should give you random addresses, reflecting a

[issue5231] Change format of a memoryview

2009-02-12 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: Memoryview objects provide a structured view over a memory area, meaning the length, indexing and slicing operations respect the itemsize: import array a = array.array('i', [1,2,3]) m = memoryview(a) len(a) 3 m.itemsize 4 m.format 'i'

[issue4751] Patch for better thread support in hashlib

2009-02-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: @ebfe: Your patch is very close to r68411 (patch for py3k), and so it looks correct (I didn't test it). ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4751

[issue1712522] urllib.quote throws exception on Unicode URL

2009-02-12 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@haypocalc.com: -- components: +Unicode nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1712522 ___

[issue2637] urllib.quote() escapes characters unnecessarily and contrary to docs

2009-02-12 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@haypocalc.com: -- nosy: -haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2637 ___ ___

[issue5229] Documentation for super() neglects to say what super() actually does

2009-02-12 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: I will work on this a bit more. Keep in mind that it will be hard to please the author of that article, as he finds the whole notion of multiple inheritance to be bankrupt. -- assignee: georg.brandl - rhettinger

[issue5232] Setting font from preference dialog in IDLE on OS X broken

2009-02-12 Thread Mitchell Model
New submission from Mitchell Model m...@acm.org: When setting the font in IDLE's Preferences dialog on OSX, having started IDLE from the command line, the font is changed and the following is printed: Exception in Tkinter callback Traceback (most recent call last): File

[issue1712522] urllib.quote throws exception on Unicode URL

2009-02-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: quote() works in Python3 with any bytes string (not only ASCII) and any unicode string: Python 3.1a0 (py3k:69105M, Feb 3 2009, 15:04:35) from urllib.parse import quote quote('é') '%C3%A9' quote('\xe9') '%C3%A9'

[issue5229] Documentation for super() neglects to say what super() actually does

2009-02-12 Thread Daniel Stutzbach
Daniel Stutzbach dan...@stutzbachenterprises.com added the comment: Yes, by citing that article I don't mean to endorse its opinions. Regrettably, it's the best documentation on super() I could find (in an admittedly quick search). Any improvements efforts you make to improve the existing

[issue5225] OS X Update Shell Profile may not update $PATH if run more than once

2009-02-12 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: I agree that we need a better solution to select which version of Python is the default one of your path. One way to do that is to have a tool that can change the Current link inside the framework, that way we could have

[issue5233] Enhance 2.7 IDLE to exec IDLESTARTUP/PYTHONSTARTUP on restart

2009-02-12 Thread Mitchell Model
New submission from Mitchell Model m...@acm.org: The main thing the patch does is: modify the subprocess restart procedure so that it reloads whatever file, if any, was loaded when IDLE first started and looked for IDLESTARTUP then PYTHONSTARTUP environment variables. In addition:

[issue5234] Enhance 3.1 IDLE to exec IDLESTARTUP/PYTHONSTARTUP on restart

2009-02-12 Thread Mitchell Model
New submission from Mitchell Model m...@acm.org: The main thing the patch does is: modify the subprocess restart procedure so that it reloads whatever file, if any, was loaded when IDLE first started and looked for IDLESTARTUP then PYTHONSTARTUP environment variables. In addition:

[issue5234] Enhance 3.1 IDLE to exec IDLESTARTUP/PYTHONSTARTUP on restart

2009-02-12 Thread Raymond Hettinger
Changes by Raymond Hettinger rhettin...@users.sourceforge.net: -- assignee: - kbk nosy: +kbk ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5234 ___

[issue5235] distutils seems to only work with VC++ 2008 (9.0)

2009-02-12 Thread Eric Swenson
New submission from Eric Swenson e...@swenson.org: Building python extensions using distutils in python 2.6 with only VC++ 2005 installed no longer works. distutils appears to require VC++ 2008. The documentation on building extensions for Python 2.6 seems to suggest that VC++ 2008, while

[issue5236] time.strptime should reject bytes arguments on Py3

2009-02-12 Thread Ezio Melotti
New submission from Ezio Melotti ezio.melo...@gmail.com: On Python3 time.strptime(string[, format]) accepts bytes as arguments and then fails: strptime(b2009, %Y) Traceback (most recent call last): File stdin, line 1, in module File C:\Programs\Python30\lib\_strptime.py, line 454, in

[issue5232] Setting font from preference dialog in IDLE on OS X broken

2009-02-12 Thread Ned Deily
Ned Deily n...@acm.org added the comment: FWIW, I am not able to reproduce this using a release3.0 IDLE (so with today's patches) built with the default Apple-supplied Tcl/Tk in 10.5. Are you using a newer Tcl/Tk? Does it happen if you move your current preferences out of ~/.idlerc?

[issue4751] Patch for better thread support in hashlib

2009-02-12 Thread Collin Winter
Changes by Collin Winter coll...@gmail.com: -- nosy: +collinwinter, jyasskin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4751 ___ ___

[issue5235] distutils seems to only work with VC++ 2008 (9.0)

2009-02-12 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: distutils will use the same compiler used to build Python. If you want to build with a previous version of MSVC, you need to compile Python with that particular version. That said, MSVCCompiler could probably take new options, to force the

[issue5237] Allow auto-numbered replacement fields in str.format() strings

2009-02-12 Thread Terry J. Reedy
New submission from Terry J. Reedy tjre...@udel.edu: 3.x str.format() format strings denote replacement fields with braces {}. Currently, replacement fields *must* contain either the numeric index of a positional argument, or the name of a keyword argument. [lib ref / builtin types / sequence

[issue2437] Distutils runtime_library_dirs broken on Windows

2009-02-12 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: Bill, do you have a example to reproduce the problem so I can write the test ? Laurent, right. but we need to figure out how to get the CC name in MinGW/Cygwin environment. I am not familiar with them. Does CC gets set in the environment ?

[issue5231] Change format of a memoryview

2009-02-12 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: Agreed, this would be useful. See http://codereview.appspot.com/12470/show if anyone doesn't believe us. ;) ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5231

[issue5235] distutils seems to only work with VC++ 2008 (9.0)

2009-02-12 Thread Eric Swenson
Eric Swenson e...@swenson.org added the comment: Hi Tarek, I have been debugging this and found the following: If you set the DISTUTILS_USE_SDK environment variable to any value (I used DISTUTILS_USE_SDK=1) and the MSSdk environment variable to anything (I used MSSdk=1), and you manually run the

[issue5237] Allow auto-numbered replacement fields in str.format() strings

2009-02-12 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5237 ___ ___ Python-bugs-list

[issue5110] Printing Unicode chars from the interpreter in a non-UTF8 terminal raises an error (Py3)

2009-02-12 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: I've also noticed that if an error contains non-encodable characters, they are escaped: raise ValueError(\u2620 can't be printed here, but '\u00e8' works fine!) Traceback (most recent call last): File stdin, line 1, in module ValueError:

[issue5238] ssl makefile never closes socket

2009-02-12 Thread David Christian
New submission from David Christian d...@rpath.com: The ssl.py makefile function returns a socket._fileobject object with a reference to itself, and also increments the makefile_refs variable. However, the _fileobject is created with the parameter close=False, which means that when you call

[issue5238] ssl makefile never closes socket

2009-02-12 Thread David Christian
Changes by David Christian d...@rpath.com: -- components: +Library (Lib) keywords: +patch type: - resource usage Added file: http://bugs.python.org/file13061/ssl.py.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5238

[issue5188] telnetlib process_rawq buffer handling is confused

2009-02-12 Thread David Christian
Changes by David Christian d...@rpath.com: -- keywords: +patch Added file: http://bugs.python.org/file13062/telnetlib.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5188 ___

[issue592703] HTTPS does not handle pipelined requests

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed type: - behavior versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue592703 ___

[issue1375011] Improper handling of duplicate cookies

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1375011 ___

[issue1564508] RFC 2965 BaseCookie does not support $Port

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Does anybody else need this one or should it be closed? -- nosy: +ajaksu2 title: BaseCookie does not support $Port - RFC 2965 BaseCookie does not support $Port type: - feature request ___ Python

[issue1372650] Cookie and multiple names

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1372650 ___

[issue1210326] comma separated cookie values

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Will close if nobody objects. -- nosy: +ajaksu2 type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1210326 ___

[issue1172011] BaseCookie does not call value_decode

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1172011 ___

[issue991266] Cookie.py does not correctly quote Morsels

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue991266 ___

[issue3407] test_urllib2_localnet fails on MacOS X 10.4.11 (Intel)

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3407 ___ ___ Python-bugs-list mailing list

[issue3066] FD leak in urllib2

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3066 ___ ___ Python-bugs-list mailing list

[issue4683] urllib2.HTTPDigestAuthHandler fails on third hostname?

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee, orsenthil stage: - needs patch versions: +Python 2.6 -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4683 ___

[issue2756] urllib2 add_header fails with existing unredirected_header

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed versions: +Python 2.6 -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2756 ___

[issue1424152] urllib/urllib2: HTTPS over (Squid) Proxy fails

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee stage: - test needed type: - feature request versions: -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1424152

[issue1327971] HTTPResponse instance has no attribute 'fileno'

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1327971 ___ ___ Python-bugs-list mailing

[issue1599329] urllib(2) should allow automatic decoding by charset

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1599329 ___ ___ Python-bugs-list mailing

[issue1682241] Problems with urllib2 read()

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Anyone against closing? -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1682241 ___

[issue4140] urllib2: request with digest auth through proxy fail

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4140 ___ ___ Python-bugs-list mailing list

[issue1673007] urllib2 requests history + HEAD support

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1673007 ___ ___ Python-bugs-list mailing

[issue2193] Cookie Colon Name Bug

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee stage: - test needed versions: -Python 2.4, Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2193 ___

[issue3704] cookielib doesn't handle URLs with / in parameters

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Library (Lib) -None stage: - patch review versions: -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3704 ___

[issue3924] cookielib chokes on non-integer cookie version, should ignore it instead

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - patch review versions: -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3924 ___

[issue1591035] update urlparse to RFC 3986

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +URI parsing library nosy: +jjlee stage: - test needed versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1591035

[issue1643370] recursive urlparse

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee stage: - test needed versions: +Python 2.7, Python 3.1 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1643370 ___

[issue5007] urllib2 HTTPS connection failure (BadStatusLine Exception)

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee, orsenthil stage: - test needed versions: +Python 2.6 -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5007 ___

[issue754016] urlparse goes wrong with IP:port without scheme

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee stage: - patch review type: - behavior versions: +Python 2.6 -Python 2.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue754016 ___

[issue1462525] URI parsing library

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed type: - feature request versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1462525 ___

[issue2987] RFC2732 support for urlparse (e.g. http://[::1]:80/)

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee stage: - patch review versions: +Python 2.7 -Python 2.5, Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2987 ___

[issue4191] urlparse normalize URL path

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Will close soon if nobody is against it. -- nosy: +ajaksu2, jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4191 ___

[issue4962] urlparse nfs url (rfc 2224)

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4962 ___ ___ Python-bugs-list mailing list

=?utf-8?q?[issue5239]_time.strptime(=EF=BC=92=EF=BC=90=EF=BC=90=EF=BC=99, _%Y)_raises_a_value_error?=

2009-02-12 Thread Ezio Melotti
New submission from Ezio Melotti ezio.melo...@gmail.com: On Py3 strptime(2009, %Y) fails: strptime(2009, %Y) Traceback (most recent call last): File stdin, line 1, in module File /usr/local/lib/python3.0/_strptime.py, line 454, in _strptime_time return _strptime(data_string, format)[0]

=?utf-8?q?[issue5239]_time.strptime(=EF=BC=92=EF=BC=90=EF=BC=90=EF=BC=99, _%Y)_raises_a_value_error?=

2009-02-12 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- components: +Library (Lib), Unicode type: - behavior versions: +Python 2.4, Python 2.5, Python 2.6, Python 2.7, Python 3.0, Python 3.1 ___ Python tracker rep...@bugs.python.org

[issue4932] Little improvement on urlparse module, urlparse function.

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4932 ___ ___ Python-bugs-list mailing list

[issue5038] urrlib2/httplib doesn't reset file position between requests

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5038 ___ ___ Python-bugs-list mailing list

[issue3819] urllib2 sends Basic auth across redirects

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: I think the test is close enough to acceptable, will adapt it if nobody does first :) -- nosy: +ajaksu2 stage: - needs patch type: - behavior versions: +Python 2.6 ___ Python tracker

[issue5102] urllib2.py timeouts do not propagate across redirects for 2.6.1 (and 3.x?)

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee, orsenthil stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5102 ___

[issue3466] urllib2 should support HTTPS connections with client keys

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee stage: - test needed versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3466 ___

[issue1424152] urllib/urllib2: HTTPS over (Squid) Proxy fails

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: test needed - patch review type: feature request - behavior versions: +Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1424152

[issue1712522] urllib.quote throws exception on Unicode URL

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +orsenthil stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1712522 ___ ___

[issue1285440] Digest Authentication not working in all cases

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1285440 ___ ___ Python-bugs-list mailing

[issue2244] urllib and urllib2 decode userinfo multiple times

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2244 ___ ___ Python-bugs-list mailing list

[issue979407] urllib2 digest auth totally broken

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue979407 ___ ___ Python-bugs-list mailing

[issue1368312] fix for scheme identification in urllib2?

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1368312 ___ ___ Python-bugs-list mailing

[issue2202] urllib2 fails against IIS 6.0 (No support for MD5-sess auth)

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2202 ___ ___ Python-bugs-list mailing list

[issue1520831] urrlib2 max_redirections=0 disables redirects

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +jjlee ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1520831 ___ ___ Python-bugs-list mailing

[issue655802] cPickle not always same as pickle

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - needs patch versions: -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue655802 ___

[issue634412] RFC 2112 in email package

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +ajaksu2 stage: - test needed versions: +Python 2.7, Python 3.1 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue634412 ___

[issue602893] cgitb tracebacks not accessible

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- keywords: +easy stage: - test needed versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue602893 ___

[issue532631] Confusions in formatfloat

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +marketdickinson stage: - test needed type: - behavior versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue532631 ___

[issue504219] locale.resetlocale is broken

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +locale.getdefaultlocale doesnt handle all locales gracefully stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org

<    1   2   3   4   5   >