[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 ___ ___

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

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

[issue1682241] Problems with urllib2 read()

2009-02-12 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: I think the bug should be closed as invalid. seek() should only be implemented by genuinely seekable streams, which HTTP responses aren't. -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org

[issue4733] Add a decode to declared encoding version of urlopen to urllib

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/issue4733 ___ ___ 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: -- dependencies: +Add a decode to declared encoding version of urlopen to urllib nosy: +orsenthil stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1599329

[issue4733] Add a decode to declared encoding version of urlopen to urllib

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +urllib(2) should allow automatic decoding by charset ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4733 ___

[issue1349732] urllib.urlencode provides two features in one param

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +orsenthil type: - feature request versions: +Python 2.6 -Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1349732 ___

[issue1027206] unicode DNS names in socket, urllib, urlopen

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

[issue1327971] HTTPResponse instance has no attribute 'fileno'

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +orsenthil versions: -Python 2.4, Python 2.5, Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1327971 ___

[issue918368] urllib doesn't correct server returned urls

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +http_error_302() crashes with 'HTTP/1.1 400 Bad Request nosy: +orsenthil ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue918368 ___

[issue4151] Separate build dir broken

2009-02-12 Thread Neil Schemenauer
Neil Schemenauer nas-pyt...@arctrix.com added the comment: On Thu, Feb 12, 2009 at 01:32:37PM +, Matthias Klose wrote: still seen on the 2.6 branch. applying r69374 on the branch doesn't fix it there. The fix is spread over a number of commits: r69374, r69322, r69315, r69305, r69304,

[issue2600] BindingHTTPConnectionWithTimeout and BindingHTTPHandlerWithTimeout

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

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

2009-02-12 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Adding something like an `interactive=True` could do the trick (setting it to False meaning you don't want any password prompt or any other similar console interaction with the user). -- nosy: +pitrou

[issue3991] urllib.request.urlopen does not handle non-ASCII characters

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/issue3991 ___ ___ Python-bugs-list mailing

[issue5072] urllib.open sends full URL after GET command instead of local path

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Anyone against closing this as works for me? -- keywords: +patch nosy: +ajaksu2, orsenthil stage: - test needed versions: +Python 2.6 -Python 2.5 ___ Python tracker rep...@bugs.python.org

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

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

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

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

[issue4773] HTTPMessage not documented and has inconsistent API across 2.6/3.0

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: ISTM that these issues tend to go all the way up to test coverage and organization :/ -- assignee: - georg.brandl components: +Documentation nosy: +ajaksu2, georg.brandl, orsenthil stage: - test needed

[issue4758] Python 3.0 internet documentation needs work

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

[issue5032] itertools.count step

2009-02-12 Thread David W. Lambert
David W. Lambert lamber...@corning.com added the comment: I run my shells with low priority so I can sneak around and kill them. ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5032 ___

[issue4675] urllib's splitpasswd does not accept newline chars in passwords

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Inline test included in the patch. -- nosy: +ajaksu2, orsenthil stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4675 ___

[issue3002] shutil.copyfile blocks indefinitely on named pipes

2009-02-12 Thread François Granade
François Granade franc...@granade.com added the comment: Note that the 'cp' user command in Linux blocks also. Although this is *very* painful, you could argue that since the OS commands do the same thing, it shouldn't be fixed. -- nosy: +farialima

[issue3428] httplib.HTTPMessage undocumented

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

[issue3849] FUD in documentation for urllib.urlopen()

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

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

2009-02-12 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: @Tom: issue 1712522 tracks Unicode support. -- assignee: - georg.brandl components: +Documentation dependencies: +urllib.quote throws exception on Unicode URL keywords: +easy nosy: +ajaksu2, ezio.melotti, georg.brandl, haypo, orsenthil

[issue3427] urllib documentation: urlopen().info() return type

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

[issue4773] HTTPMessage not documented and has inconsistent API across 2.6/3.0

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +httplib.HTTPMessage undocumented ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4773 ___

[issue4493] urllib2 doesn't always supply / where URI path component is empty

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +urllib2 can't handle http://www.wikispaces.com nosy: +orsenthil stage: - test needed type: - behavior versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org

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

2009-02-12 Thread Daniel Stutzbach
New submission from Daniel Stutzbach dan...@stutzbachenterprises.com: The documentation for super() describes the arguments that can be passed to super(), use cases for super(), an example, and caveats about what cannot be done with the returned object. However, the documentation neglects to

<    1   2   3   4   5   >