[issue1161031] Neverending warnings from asyncore

2009-02-12 Thread Tony Meyer
Tony Meyer anadelonb...@users.sourceforge.net added the comment: None of my arguments have really changed since 2.4. I still believe that this is a poor choice of default behaviour (and if it is meant to be overridden to be useable, then 'pass' or 'raise NotYetImplementedError' would be a

[issue1161031] Neverending warnings from asyncore

2009-02-12 Thread Gregory P. Smith
Gregory P. Smith g...@krypto.org added the comment: A documentation patch would be appreciated, thanks! -- nosy: +gregory.p.smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1161031 ___

[issue5215] change value of local variable in debug

2009-02-12 Thread mproeller
mproeller mproel...@googlemail.com added the comment: This is the pdb session at the tracepoint in line 4 in the function func () So I did the following first: c:\test.py(5)func() - a = b + 2 (Pdb) p b 13 (Pdb) !b=5 (Pdb) p b 13 (Pdb) n c:\test.py(6)func() - print a (Pdb) n 15 I tried to

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

2009-02-12 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: - avoids comparing an unsigned long to -1 Just out of interest, why? The cast is unnecessary: there's no ambiguity or undefinedness (the int -1 gets promoted to unsigned long, with wraparound semantics), and neither gcc nor MSVC

[issue5202] wave.py cannot write wave files into a shell pipeline

2009-02-12 Thread David Jones
David Jones d...@pobox.com added the comment: The following program does a very basic do-i-get-back-what-i-wrote test. sunau can't cope; I am investigating. #!/usr/bin/env python # $Id$ # Audio File Tests import aifc import sunau import wave import struct import sys from StringIO import

[issue5032] itertools.count step

2009-02-12 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: A couple of comments: Also, improved the utility over its cousin, range() by allowing floating point arguments. Is this wise? From a numerical perspective, it seems to me that using count with floating-point arguments is almost always

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

2009-02-12 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Mark: Just out of interest, why? The cast is unnecessary: there's no ambiguity or undefinedness (the int -1 gets promoted to unsigned long, with wraparound semantics), and neither gcc nor MSVC complains. Well, I had memories of a weird

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

2009-02-12 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: I don't think backporting to 2.6 is fine, people may be relying on the current behaviour. As for 3.0.1, you'd better be quick, it's scheduled for tomorrow. -- nosy: +pitrou ___ Python tracker

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

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

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

2009-02-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Wooops, my mouse clicked on Remove!? I removed Message73550, sorry gregory. Here was the content of the message: --- agreed. most platforms should be using the openssl version, i will update the non-openssl implementations to

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

2009-02-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: I agree with pitrou: leave python 2.6 unchanged, but please backport to 3.0.1 ;-) ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3745

[issue3833] python-2.6b3.msi and python-2.6b3.amd64.msi can't both be installed on one machine

2009-02-12 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: agreed. most platforms should be using the openssl version, i will update the non-openssl implementations to behave the same. I don't think this is worth being a release blocker. I'll do it for 3.0.1. -- nosy: +gregory.p.smith

[issue3833] python-2.6b3.msi and python-2.6b3.amd64.msi can't both be installed on one machine

2009-02-12 Thread Guilherme Polo
Changes by Guilherme Polo ggp...@gmail.com: ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3833 ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3833] python-2.6b3.msi and python-2.6b3.amd64.msi can't both be installed on one machine

2009-02-12 Thread Guilherme Polo
Changes by Guilherme Polo ggp...@gmail.com: ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3833 ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3833] python-2.6b3.msi and python-2.6b3.amd64.msi can't both be installed on one machine

2009-02-12 Thread Guilherme Polo
Changes by Guilherme Polo ggp...@gmail.com: -- nosy: -gregory.p.smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3833 ___ ___ Python-bugs-list

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

2009-02-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: gpolo gave me the solution to restore a deleted message: http://bugs.python.org/issuexx...@action=edit@a...@messages=msgnum ___ Python tracker rep...@bugs.python.org

[issue4751] Patch for better thread support in hashlib

2009-02-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: @ebfe: Did you wrote the patch (for python 2.7)? Are you still interrested to write the patch? ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4751

[issue5223] infinite recursion in PyErr_WriteUnraisable

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/issue5223 ___ ___

[issue637094] print to unicode stream should __unicode

2009-02-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: ajaksu2 Not sure it's still important after 3.0 release. Python2 has too much issues related to unicode. It's easier to switch to Python3 which use unicode by default for most functions (eg. print). The issue can't be fixed in

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

2009-02-12 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Well, I had memories of a weird signed/unsigned problem (issue4935) and I wasn't sure whether it could raise its head in the present case or not. I'm 99.9% sure that it's not a problem here. If it is a problem then it needs to be fixed in

[issue5032] itertools.count step

2009-02-12 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Not too worried about either issue. For the first, it makes the code closer to its pure python equivalent. Better to add some math module function like Matlab's linspace(). It's hard to prevent people from creating

[issue660095] GNU readline version confusion

2009-02-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: This issue is related to old versions: - readline 4.2: current is 5.2 - gcc 3.2.1: current is 4.3.3 - python 2.2.2: current is 2.6.1 - etc. If the problem is still valid today, please reopen this issue. -- nosy: +haypo

[issue5224] OS X installer: Update Shell Profile script is not updated

2009-02-12 Thread Ned Deily
New submission from Ned Deily n...@acm.org: ANALYSIS The script used by the Python installer to update the user's shell script has a hard-coded version number. This script is also installed in the /Applications/Python n.n directory as Update Shell

[issue5224] OS X installer: Update Shell Profile script is not updated

2009-02-12 Thread Ned Deily
Changes by Ned Deily n...@acm.org: Added file: http://bugs.python.org/file13046/patch-nad0005-py3k-30.txt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5224 ___

[issue5224] OS X installer: Update Shell Profile script is not updated

2009-02-12 Thread Ned Deily
Changes by Ned Deily n...@acm.org: Added file: http://bugs.python.org/file13047/patch-nad0005-trunk.txt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5224 ___

[issue5224] OS X installer: Update Shell Profile script is not updated

2009-02-12 Thread Ned Deily
Changes by Ned Deily n...@acm.org: Added file: http://bugs.python.org/file13048/patch-nad0005-26.txt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5224 ___

[issue5032] itertools.count step

2009-02-12 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: to write: count(Decimal('1.1'), Decimal('.1')) and get exact progressions. That's pretty cool. :-) in itertools eons ago, there have been zero bug reports or user complaints about the issue. So, I'll take it as a non-issue. Fair

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

2009-02-12 Thread Ned Deily
New submission from Ned Deily n...@acm.org: An instance of the shell script Update Shell Profile.command is installed in each /Applications/Python x.x folder. Clicking on the script allows the user to change the default Python version. If the scripts are run more than

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

2009-02-12 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Other than that, the patch looks fine to me; x ^= x 4 would be fine too. I've just tried x ^= x 4 and the speedup is smaller on our microbenchmark (time_object_hash.py). I conjecture that trying to maintain the sequentiality of adresses

[issue5214] Add KOI8-RU as a known encoding

2009-02-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: I found this file http://ra.dkuug.dk/i18n/charmaps/KOI8-RU. I converted it to a format compatible with gencodec.py. Here is the resulting file: copy it into your python library/encodings/. -- nosy: +haypo Added file:

[issue5226] OS X installer: Welcome and Readme files are out-of-date

2009-02-12 Thread Ned Deily
New submission from Ned Deily n...@acm.org: The information in the installer Welcome and README is out-of-date. APPLIES py3k, 3.0, trunk, 2.6 NOTEpatch-nad0019-py3k-30.txt py3k, 3.0 patch-nad0019-trunk-26.txt trunk, 2.6 -- components: Macintosh files:

[issue5226] OS X installer: Welcome and Readme files are out-of-date

2009-02-12 Thread Ned Deily
Changes by Ned Deily n...@acm.org: Added file: http://bugs.python.org/file13052/patch-nad0019-trunk-26.txt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5226 ___

[issue5214] Add KOI8-RU as a known encoding

2009-02-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Attach file used as gencodec.py input: koi8-ru. dwayne: Does the result look correct? Added file: http://bugs.python.org/file13053/koi8-ru ___ Python tracker rep...@bugs.python.org

[issue5214] Add KOI8-RU as a known encoding

2009-02-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: My version of iconv (2.6.1) doesn't support KOI8-RU, only: - CSKOI8R - KOI-7 - KOI-8 - KOI8-R: supported by python trunk - KOI8-T - KOI8-U: supported by python trunk - KOI8 - KOI8R - KOI8U Note: python trunk doesn't support

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

2009-02-12 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: +1 for checking in pointer_hash4.patch, provided Raymond approves. ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5186 ___

[issue5214] Add KOI8-RU as a known encoding

2009-02-12 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: Could you please clarify the official status of this encoding. According to this page: http://www.terena.org/activities/multiling/koi8-ru/index.html it is currently only a proposed draft which hasn't been updated since 1997. --

[issue637094] print to unicode stream should __unicode

2009-02-12 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: On 2009-02-12 12:49, STINNER Victor wrote: STINNER Victor victor.stin...@haypocalc.com added the comment: ajaksu2 Not sure it's still important after 3.0 release. Python2 has too much issues related to unicode. It's easier to switch

[issue5032] itertools.count step

2009-02-12 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: More coolness: count(Fraction(2,3), Fraction(1,6)) ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5032 ___

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

2009-02-12 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Consider it approved. Though I prefer you switch to x ^= x 4. -- resolution: - accepted ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5186

[issue5227] Py_Main() does not return on sys.exit()

2009-02-12 Thread Rogi
New submission from Rogi r...@linuxmail.org: From teh documentation: http://docs.python.org/c-api/veryhigh.html int Py_Main(int argc, char **argv)ΒΆ The main program for the standard interpreter. This is made available for programs which embed Python. The argc and argv parameters should be

[issue637094] print to unicode stream should __unicode

2009-02-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Python3 fixes the print statement to be a function, which allows much better extensibility of the concept. You can have the same in Python2 with a little effort: just create your own myprint() function and have it process

[issue4998] __slots__ on Fraction is useless

2009-02-12 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: This needs to be merged before 3.0.1 goes out. I can't do it right now since I don't have ssh access; will do it when I get home if no-one beats me to it. -- priority: critical - release blocker

[issue4151] Separate build dir broken

2009-02-12 Thread Matthias Klose
Matthias Klose d...@debian.org added the comment: still seen on the 2.6 branch. applying r69374 on the branch doesn't fix it there. -- nosy: +doko resolution: fixed - status: closed - open versions: +Python 2.6 ___ Python tracker

[issue637094] print to unicode stream should __unicode

2009-02-12 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: On 2009-02-12 14:22, STINNER Victor wrote: STINNER Victor victor.stin...@haypocalc.com added the comment: Python3 fixes the print statement to be a function, which allows much better extensibility of the concept. You can have the same

[issue4751] Patch for better thread support in hashlib

2009-02-12 Thread Lukas Lueg
Lukas Lueg knabberknusperh...@yahoo.de added the comment: yes, I got lost on that one. I'll create a patch for 2.7 tonight. ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4751 ___

[issue5228] multiprocessing not compatible with functools.partial

2009-02-12 Thread ndbecker
New submission from ndbecker ndbeck...@gmail.com: from multiprocessing import Pool def power (x, pwr=2): return x**pwr import functools run_test = functools.partial (power, pwr=3) if __name__ == __main__: pool = Pool() cases = [3,4,5] results = pool.map (run_test, cases)

[issue5228] multiprocessing not compatible with functools.partial

2009-02-12 Thread Jesse Noller
Changes by Jesse Noller jnol...@gmail.com: -- assignee: - jnoller nosy: +christian.heimes ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5228 ___

[issue5228] multiprocessing not compatible with functools.partial

2009-02-12 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: See this mail thread: http://mail.python.org/pipermail/python-dev/2009-February/086034.html ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5228 ___

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

2009-02-12 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Though I prefer you switch to x ^= x 4. Okay, how about this one? Short and sweet. No loss of information except when sizeof(void *) sizeof(long) (unavoidable until someone finds a way to fit all 64-bit pointers into a 32-bit integer

[issue5194] OS X IDLE.app and bin/idle: missing/extra menu options

2009-02-12 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: I've fixed this for 3.1 in r69532. Fixed for 3.0 in r69533 (backport of the other patch). The actual checkin is based on patch-nad0014-py3k-30.txt, but with some minor tweaks (I use idlelib.macosxSupport.runningAsOSXApp throughout,

[issue5195] OS X IDLE.app and bin/idle: incorrect key defaults in 3.x

2009-02-12 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: Applied the patch as r69534 (3.1) and r69534 (3.0) -- nosy: +ronaldoussoren resolution: - accepted status: open - closed ___ Python tracker rep...@bugs.python.org

[issue5196] OS X IDLE.app: may not launch on 3.x

2009-02-12 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: Applied as r69536 (3.1) and r69537 (3.0) -- nosy: +ronaldoussoren resolution: - accepted status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5196

[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 don't like this patch because it could grow the users profile without bounds when switching back and forth between two python versions. -- nosy: +ronaldoussoren ___ Python tracker

[issue5226] OS X installer: Welcome and Readme files are out-of-date

2009-02-12 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: Applied patch for 3.1 (r69538) and 3.0 (r69539). -- nosy: +ronaldoussoren resolution: - accepted ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5226

[issue5226] OS X installer: Welcome and Readme files are out-of-date

2009-02-12 Thread Benjamin Peterson
Changes by Benjamin Peterson benja...@python.org: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5226 ___ ___

[issue5143] OS X: Py_SetProgramName argument has type char*; should be wchar_t*

2009-02-12 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: I've applied both the fix and tests in r69540 (3.1) and r69541 (3.0) -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5143

[issue3883] Bottom buttons of IDLE Preferences Pane on Mac not wide enough for their text.

2009-02-12 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: I've committed the ronald-configDialog.patch to 3.1 and 3.0. This does mostly the same as Kevin's patch, but only on OSX (that is, I check for OSX and don't add the padding arguments in that case). I haven't applied Kevin's patch as

[issue5224] OS X installer: Update Shell Profile script is not updated

2009-02-12 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: Committed as r69544 (3.1) and r69545 (3.0) -- nosy: +ronaldoussoren ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5224 ___

[issue1533164] Installed but not listed *.pyo break bdist_rpm

2009-02-12 Thread Jim Baker
Jim Baker jba...@zyasoft.com added the comment: Ideally packages should not need to add optimize=1 to their setup.cfg, as this currently breaks Jython compatibility. This is because Jython, including 2.5, does not support the -O flag. -- nosy: +jbaker

[issue5224] OS X installer: Update Shell Profile script is not updated

2009-02-12 Thread Benjamin Peterson
Changes by Benjamin Peterson benja...@python.org: -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5224 ___

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

2009-02-12 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Okay, how about this one? Apart from the misindentation (the file should use tabs not spaces), have you run the benchmark script with it? ___ Python tracker rep...@bugs.python.org

[issue5226] OS X installer: Welcome and Readme files are out-of-date

2009-02-12 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: reopened because this issue was only fixed for python 3.x -- status: closed - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5226

[issue5210] zlib does not indicate end of compressed stream properly

2009-02-12 Thread Travis Hassloch
Travis Hassloch tra...@giganews.com added the comment: Here is a patch which adds a member called is_finished to decompression objects that allows client code to know when it has reached the end of the compressed stream. -- keywords: +patch Added file:

[issue5224] OS X installer: Update Shell Profile script is not updated

2009-02-12 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: Reopened the issue because it is only fixed for 3.x at the moment. -- status: closed - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5224

[issue2263] struct.pack() + numpy int raises SystemError

2009-02-12 Thread engelbert gruber
engelbert gruber grub...@users.sourceforge.net added the comment: Including Py_TPFLAGS_INT_SUBCLASS in numpy's BASEFLAGS cures this. This is an external problem then. But I could not find any reference to Py_TPFLAGS_*_SUBCLASS in the documentation, that is a python problem.

[issue2263] struct.pack() + numpy int raises SystemError

2009-02-12 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Ok, so Python has to improve its C-API documentation, and numpy to fix its int types :) -- assignee: - georg.brandl components: +Documentation -Library (Lib) nosy: +georg.brandl, pitrou priority: - normal versions: +Python 2.6, Python

[issue1537445] urllib2 httplib _read_chunked timeout

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Should this one be closed and docs discussed in a new one? Volunteers? :) -- assignee: - georg.brandl components: +Documentation, Library (Lib) -None nosy: +ajaksu2, georg.brandl, orsenthil stage: - test needed type: - behavior

[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: +orsenthil stage: - test needed versions: -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2202 ___

[issue1448934] urllib2+https+proxy not working

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +Added HTTP{,S}ProxyConnection nosy: +orsenthil stage: - test needed versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1448934

[issue1595365] User-agent header added by an opener is frozen

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

[issue1520831] urrlib2 max_redirections=0 disables redirects

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: rus_r_orange: Can you share your patch and tests? -- nosy: +ajaksu2, orsenthil stage: - test needed versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1520831

[issue1160328] urllib2 post error when using httpproxy

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

[issue1368312] fix for scheme identification in urllib2?

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

[issue979407] urllib2 digest auth totally broken

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Library (Lib) -None dependencies: +urllib2 doesn't handle username/password in url nosy: +orsenthil stage: - test needed type: - behavior versions: +Python 2.6 ___ Python tracker

[issue1508475] transparent gzip compression in liburl2

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

[issue1490929] urllib.retrieve's reporthook called with non-helpful value

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Patch has docs, tests needed. -- nosy: +ajaksu2, orsenthil stage: - test needed versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1490929

[issue4894] Docs for urllib.request.HTTPRedirectHandler.redirect_request missing hdrs paramether

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- keywords: +easy nosy: +orsenthil stage: - patch review title: documentaion doesn't include parameter in urllib.request.HTTPRedirectHandler.redirect_request - Docs for urllib.request.HTTPRedirectHandler.redirect_request missing hdrs

[issue3244] multipart/form-data encoding

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +Support iterable bodies in httplib keywords: +easy nosy: +orsenthil stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3244

[issue3066] FD leak in urllib2

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Has (non-unittest) test and proposed (non-diff) patch inline. -- nosy: +ajaksu2, orsenthil stage: - test needed versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org

[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: +orsenthil ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3407 ___ ___ Python-bugs-list mailing

[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: -- versions: +Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3407 ___ ___ Python-bugs-list

[issue3583] test_urllibnet.test_bad_address() fails when using OpenDNS

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

[issue1453973] addheaders for urlopen / open / xxxx_open

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

[issue1519816] urllib2 proxy does not work in 2.4.3

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

[issue3702] test_urllib2.test_trivial fails when run from another Windows drive

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/issue3702 ___ ___

[issue2244] urllib and urllib2 decode userinfo multiple times

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

[issue5228] multiprocessing not compatible with functools.partial

2009-02-12 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Rather than implement a multiprocessing-specific fix, it would certainly be better to make functools.partial picklable, as pointed out in the ML thread Jesse linked to. -- nosy: +pitrou ___ Python

[issue5228] multiprocessing not compatible with functools.partial

2009-02-12 Thread Jesse Noller
Jesse Noller jnol...@gmail.com added the comment: Antoine Pitrou pit...@free.fr added the comment: Rather than implement a multiprocessing-specific fix, it would certainly be better to make functools.partial picklable, as pointed out in the ML thread Jesse linked to. I would tend to agree

[issue4998] __slots__ on Fraction is useless

2009-02-12 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Merged (manually) to py3k in r69547; svnmerged to 3.0 and 2.6 in r69548, r69549. -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4998

[issue618023] imap handler in urllib(2)

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Does imaplib cover this? -- components: +Library (Lib) -Extension Modules nosy: +ajaksu2, orsenthil versions: +Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org

[issue1285440] Digest Authentication not working in all cases

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Library (Lib) -Extension Modules nosy: +orsenthil stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org

[issue1368368] prompt_user_passwd() in FancyURLopener masks 401 Unauthorized error page

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Library (Lib) -None nosy: +orsenthil stage: - test needed title: prompt_user_passwd() in FancyURLopener - prompt_user_passwd() in FancyURLopener masks 401 Unauthorized error page type: - behavior versions: +Python 2.6, Python

[issue1634770] Please provide rsync-method in the urllib[2] module

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

[issue1682241] Problems with urllib2 read()

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Patch has tests too (might need updating). -- nosy: +ajaksu2, orsenthil stage: - patch review type: - behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker rep...@bugs.python.org

[issue1682241] Problems with urllib2 read()

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

[issue1682241] Problems with urllib2 read()

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

[issue1673007] urllib2 requests history + HEAD support

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Patch has tests too, might need updating. :) -- nosy: +ajaksu2, orsenthil stage: - patch review type: - feature request versions: +Python 2.7 -Python 2.6 ___ Python tracker rep...@bugs.python.org

[issue1424148] urllib.FancyURLopener.redirect_internal looses data on POST!

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +urllib2 POSTs on redirect nosy: +orsenthil stage: - test needed type: - behavior versions: +Python 2.6, Python 3.0 -Python 2.4 ___ Python tracker rep...@bugs.python.org

[issue1067702] urllib fails with multiple ftps

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: OP supplied a detailed test. Needs confirmation. -- nosy: +ajaksu2, orsenthil stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.3 ___ Python tracker rep...@bugs.python.org

[issue1285086] urllib.quote is too slow

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/issue1285086 ___ ___

  1   2   3   >