[issue5818] Fix five small bugs in the bininstall and altbininstall pseudotargets

2009-04-22 Thread Larry Hastings
Larry Hastings added the comment: Minor correction for the "First" bug mentioned: altbininstall is running "ln", not "ln -s". -- ___ Python tracker ___ __

[issue5818] Fix five small bugs in the bininstall and altbininstall pseudotargets

2009-04-22 Thread Larry Hastings
New submission from Larry Hastings : Makefile.pre.in as checked in has several small bugs: First, the altbininstall target runs "ln -s" without first ensuring the destination doesn't exist. If you run "make install" twice, without manually deleting $prefix/bin/python3 between the runs, the "ln"

[issue5434] datetime.monthdelta

2009-04-22 Thread Jess Austin
Changes by Jess Austin : Removed file: http://bugs.python.org/file13696/monthdelta2.diff ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue5434] datetime.monthdelta

2009-04-22 Thread Jess Austin
Changes by Jess Austin : Added file: http://bugs.python.org/file13743/monthdelta3.diff ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue5783] IDLE cannot find windows chm file

2009-04-22 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: r71812 in trunk. Will port to 3-head 30-maint 26-maint. Thanks for the patch! -- resolution: -> accepted status: open -> pending ___ Python tracker ___

[issue1500504] Alternate RFC 3986 compliant URI parsing module

2009-04-22 Thread Senthil
Senthil added the comment: I am willing to review this/work on it. But I wonder if this can be categorized as easy task. 1) Integration to Standard Library will involve compatibility with existing parsing, which will invariably involve certain tweaks (with discussions/buy-in from others). 2) T

[issue1525806] Tkdnd mouse cursor handling patch

2009-04-22 Thread Guilherme Polo
Guilherme Polo added the comment: I just created a sample listbox with drag & drop support and it indeed looks better if the "hand2" cursor or whatever cursor is set only shows up when motion starts. But, for the sample included with Tkdnd, I find it better to show up the different cursor when c

[issue5817] Right-click behavior from Windows Explorer

2009-04-22 Thread Michael Kopinsky
New submission from Michael Kopinsky : When I right-click on a .py file in Windows Explorer and click Edit with IDLE, it currently opens a completely new instance of IDLE (with two windows, one for shell and one for editing the file). It would be better if it just opened the file as an additional

[issue4961] Inconsistent/wrong result of askyesno function in tkMessageBox

2009-04-22 Thread Guilherme Polo
Changes by Guilherme Polo : -- stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue4961] Inconsistent/wrong result of askyesno function in tkMessageBox

2009-04-22 Thread Guilherme Polo
Guilherme Polo added the comment: I've verified it, it is indeed a bug in tkMessageBox.py which is very likely to be noticed while using tk 8.5 or newer. -- assignee: -> gpolo nosy: +gpolo versions: +Python 2.7, Python 3.0, Python 3.1 ___ Python tra

[issue4482] 10e667.__format__('+') should return 'inf'

2009-04-22 Thread Mark Dickinson
Mark Dickinson added the comment: > Maybe if you explicitly ask for the "sign" of a NaN, it should > always be a space. Actually, I think '+nan' for format(float('nan'), '+'), and ' nan' for format(float('nan'), ' '). Then nans and infs can be treated identically, except that the sign of a na

[issue4111] Add DTrace probes

2009-04-22 Thread Robert Kern
Robert Kern added the comment: Hmm, wait a second. Never mind. The Solaris patches don't have ceval.o on the line for compiling phelper.o, either. If dtrace needs to resolve the symbol PyEval_EvalFrameEx in an object file, how does it know to look in ceval.o for the phelper.d? WITH_DTRACE is de

[issue780602] No sleep or busy wait

2009-04-22 Thread Guilherme Polo
Guilherme Polo added the comment: In theory at least, it is valid. I have done something similar in another tcl <-> python bridge that I did for fun, but didn't achieve good results in the end. From what I remember, creating a timer handler instead of using a 20ms sleep complicates the releasing

[issue4482] 10e667.__format__('+') should return 'inf'

2009-04-22 Thread Eric Smith
Eric Smith added the comment: I agree on the alignment issue. Maybe if you explicitly ask for the "sign" of a NaN, it should always be a space. And when requesting leading zeros, you also get leading spaces instead? -- ___ Python tracker

[issue4482] 10e667.__format__('+') should return 'inf'

2009-04-22 Thread Mark Dickinson
Mark Dickinson added the comment: > A somewhat related comment about formatting of infs and nans: I think > that a formatted nan should never include a sign, even when it's > explicitly asked for. I'm not so sure about this any more. Sometimes the role of an explicit sign is to act as a bi

[issue5812] Fraction('1e6') should be valid.

2009-04-22 Thread Mark Dickinson
Mark Dickinson added the comment: Hmm. That patch isn't quite right, in at least two respects - if the single-argument constructor is using LBYL (i.e., an explicit isinstance(x, Rational), then the two-argument constructor should too. - the zero-division check should come *after* the t

[issue4111] Add DTrace probes

2009-04-22 Thread Robert Kern
Robert Kern added the comment: Ah, duh, of course. The problem here with PyEval_EvalFrameEx is that I don't have ceval.o on the command line *at all* since OS X's dtrace doesn't support -G. It doesn't appear to accept ceval.o with -h, either, so I suppose that adding the ustack helper may simply

[issue4111] Add DTrace probes

2009-04-22 Thread Ted Leung
Ted Leung added the comment: On Apr 22, 2009, at 1:24 PM, Skip Montanaro wrote: > > Skip Montanaro added the comment: > > Sorry, I've been away from this issue. I was sort of hoping the Sun > and > Apple folks would just work things out amongst themselves and > present us > with a fait ac

[issue1119673] ScrolledText allows Frame.bbox to hide Text.bbox

2009-04-22 Thread Guilherme Polo
Guilherme Polo added the comment: > I suppose these lines from ScrolledText.py should > be expanded to include 'bbox', but I have not tested > such a fix: > >if m[0] != '_' and m != 'config' and m != 'configure': >setattr(self, m, getattr(self.frame, m)) bbox is alre

[issue4111] Add DTrace probes

2009-04-22 Thread John Levon
John Levon added the comment: Yes, my mistake. I noticed this typo in the original patch: 207 +PyObject * 208 +PyEval_EvalFrameexEx(PyFrameObject *f, int throwflag)) Can you: - verify that HAVE_DTRACE is indeed defined for ceval.c - do an nm on ceval.o and look which Eval* functions

[issue2980] Pickle stream for unicode object may contain non-ASCII characters.

2009-04-22 Thread Antoine Pitrou
Antoine Pitrou added the comment: If your data is simple enough, you can use JSON. It has an `ensure_ascii` flag when dumping data. -- nosy: +pitrou ___ Python tracker ___ __

[issue5812] Fraction('1e6') should be valid.

2009-04-22 Thread Mark Dickinson
Mark Dickinson added the comment: Here's a patch for making Fraction(3, Fraction(4, 5)) valid. It's against the trunk. -- stage: needs patch -> patch review Added file: http://bugs.python.org/file13739/fraction_of_fractions.patch ___ Python tracker

[issue5815] locale.getdefaultlocale() missing corner case

2009-04-22 Thread rg3
rg3 added the comment: Excellent. Thanks for the tip. I'll now proceed to modify my code to use getpreferredencoding. Still, I think getdefaultlocale should work because it could be used in other situations, I suppose. -- ___ Python tracker

[issue2980] Pickle stream for unicode object may contain non-ASCII characters.

2009-04-22 Thread Torsten Bronger
Torsten Bronger added the comment: The "problem" is the pickle result. It's not about debugging the pickler itself. -- ___ Python tracker ___ ___

[issue4111] Add DTrace probes

2009-04-22 Thread Robert Kern
Robert Kern added the comment: Skip> Perhaps not quite on-topic for this tracker item, but it bugs me that the Skip> mere compilation of a D script requires root privileges. It doesn't. "dtrace -G" and "dtrace -h" (the only "mere compilation" that dtrace does) run without root privileges. That

[issue5816] Simplify parsing of complex numbers and make complex('inf') valid.

2009-04-22 Thread Mark Dickinson
Changes by Mark Dickinson : -- assignee: -> marketdickinson components: +Interpreter Core priority: -> normal stage: -> patch review type: -> behavior versions: +Python 3.1 ___ Python tracker ___

[issue2980] Pickle stream for unicode object may contain non-ASCII characters.

2009-04-22 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: > I wouldn't mind a protocol 3 that does <128 ascii only. If only because > debugging base64'd zlib'd protocol-2 data is not particularly convenient. Is there any reason that prevent you to debug your pickle using pickle disassembler tool—i.e., pickletool

[issue5816] Simplify parsing of complex numbers and make complex('inf') valid.

2009-04-22 Thread Mark Dickinson
New submission from Mark Dickinson : Here's a patch that: 1. greatly simplifies the complex parsing code in Objects/complexobject.c 2. allows nans and infinities in constructing a complex number from a string 3. fixes missing out-of-memory checks (PyOS_ascii_strtod can fail due to lac

[issue5815] locale.getdefaultlocale() missing corner case

2009-04-22 Thread R. David Murray
R. David Murray added the comment: OK, it turns out that this is one of a class of known bugs of long standing (see issue554676 and issue1080864, for example). The recommended solution is to not use locale.getdefaultlocale, but to use locale.getperferredencoding. I have confirmed that that wor

[issue4111] Add DTrace probes

2009-04-22 Thread Skip Montanaro
Skip Montanaro added the comment: Sorry, I've been away from this issue. I was sort of hoping the Sun and Apple folks would just work things out amongst themselves and present us with a fait accompli. ;-) I'll try to mess around with this a little. Robert> $ sudo dtrace ... Perhaps not qu

[issue2995] Idle, some Linuxes, cannot position Cursor by mouseclick

2009-04-22 Thread Guilherme Polo
Guilherme Polo added the comment: Closing as won't fix since there is nothing to fix on Python side, not from what I have noticed at least. Mandriva 2009 and Sugar (and other places with this problem) should check how they got IDLE to act like that, and could try compiling python from source li

[issue1100366] Frame does not receive configure event on move

2009-04-22 Thread Guilherme Polo
Guilherme Polo added the comment: That is because only the root window changed the position, a Configure event is fired whenever the window changes its size, position, or border width, and sometimes when it has changed position in the stacking order. Try changing your example to verify this. i

[issue5434] datetime.monthdelta

2009-04-22 Thread Jess Austin
Jess Austin added the comment: The backport through python 2.3 is up at PyPI: http://pypi.python.org/pypi?name=MonthDelta&:action=display Download source and install, or just easy_install. Documentation is also linked at PyPI. -- ___ Python tracker

[issue4111] Add DTrace probes

2009-04-22 Thread Robert Kern
Robert Kern added the comment: John, -Z does not appear to help: $ sudo dtrace -Z -n 'pid$target::PyEval_EvalFrameEx:entry' -c python dtrace: description 'pid$target::PyEval_EvalFrameEx:entry' matched 0 probes I'm not sure how that would help. If I'm reading the man page correctly, that jus

[issue798058] IDLE / PyOS_InputHook

2009-04-22 Thread Guilherme Polo
Guilherme Polo added the comment: This issue has remained as is for too long, I assume the OP has found another solution or: dropped tkinter from his usage, fixed his problem according to issue989712, something else. Some time ago I read about your proposal to change PyOS_InputHook by PyOS_AddI

[issue1012435] ctrl-left/-right works incorectly with diacritics

2009-04-22 Thread Guilherme Polo
Guilherme Polo added the comment: This is not a bug in tkinter either, unfortunately. Please report it at tk tracker: http://sourceforge.net/projects/tktoolkit/ Here is the equivalent tcl code to reproduce the problem (you could use it while re-reporting at the tk tracker): $ wish8.5 % pack [t

[issue5815] locale.getdefaultlocale() missing corner case

2009-04-22 Thread rg3
rg3 added the comment: Further investigation: The guy who had this issue may be from Valencia, Spain. According to the manpage for setlocale(3) in my system, the form is usually language[_territory][.codese...@modifier]. So, in this case, it would make sense for the language to be "ca" (Catalan

[issue5815] locale.getdefaultlocale() missing corner case

2009-04-22 Thread rg3
rg3 added the comment: You are right. The issue is not reproduced with es_ca.ut...@valencia but with ca_es.ut...@valencia. The fact that the first case works makes me think maybe there's another way to solve the problem. Can you check that? -- ___ Py

[issue3521] file.readline: bad exception recovery

2009-04-22 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- assignee: -> benjamin.peterson nosy: +benjamin.peterson priority: -> high ___ Python tracker ___ __

[issue5815] locale.getdefaultlocale() missing corner case

2009-04-22 Thread R. David Murray
R. David Murray added the comment: I wasn't able to reproduce this by just setting my LC_ALL environment variable to es_ca.ut...@valencia and calling getdefaultlocale. Can you provide more complete steps to reproduce? -- nosy: +r.david.murray priority: -> normal stage: -> test needed

[issue4608] urllib.request.urlopen does not return an iterable object

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy priority: -> high stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mai

[issue1660009] continuing problem with httplib multiple set-cookie headers

2009-04-22 Thread Daniel Diniz
Daniel Diniz added the comment: John J Lee wrote: > Hold on, httplib.HTTPMessage.addheader() is undocumented, hence private. Not so easy to know, as many things in the network libs are undocumented. And it can be still be wrong, regardless of being private. -- components: +Library (Lib

[issue2204] document ConfigParser behaviour when a file has same section multiple times

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Library (Lib) keywords: +easy priority: -> normal stage: -> test needed ___ Python tracker ___

[issue1440472] email.Generator is not idempotent

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue755660] allow HTMLParser to continue after a parse error

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy -patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue1046092] HTMLParser fix to accept mailformed tag attributes

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy, patch stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue683938] HTMLParser attribute parsing bug

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue724459] Add documentation about line endings in email messages.

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

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

2009-04-22 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed in trunk. Easier to copy and paste: import urllib2 h = urllib2.HTTPHandler(debuglevel = 1) opener = urllib2.build_opener(h) request = urllib2.Request('http://www.google.de/') request.header_items() opener.open(request) request.header_items() request

[issue1508475] transparent gzip compression in liburl2

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

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

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue3244] multipart/form-data encoding

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue618023] imap handler in urllib(2)

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

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

2009-04-22 Thread Daniel Diniz
Daniel Diniz added the comment: I agree that changing the default isn't an option. However, IMHO, having to override HTTPRedirectHandler.redirect_request or FancyURLopener.redirect_internal to get RFC compliant (albeit non-useful in 99.99% of use cases) is a bit weird. Maybe the docs should co

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

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

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

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

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

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue4758] Python 3.0 internet documentation needs work

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3428] httplib.HTTPMessage undocumented

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

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

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue626452] Support RFC 2111 in email package

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue665194] datetime-RFC2822 roundtripping

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue5815] locale.getdefaultlocale() missing corner case

2009-04-22 Thread rg3
rg3 added the comment: I just realized that the "if" I introduced is not really needed. "encoding = encoding.split('@')[0]" works whether the '@' symbol is present or not. -- ___ Python tracker

[issue5812] Fraction('1e6') should be valid.

2009-04-22 Thread Mark Dickinson
Changes by Mark Dickinson : -- stage: patch review -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5815] locale.getdefaultlocale() missing corner case

2009-04-22 Thread rg3
New submission from rg3 : A recent issue with one of my programs has shown that locale.getdefaultlocale() does not handle correctly a corner case. The issue URL is this one: http://bitbucket.org/rg3/youtube-dl/issue/7/ Essentially, some users have LANG set to something like es_ca.ut...@valencia

[issue5812] Fraction('1e6') should be valid.

2009-04-22 Thread Mark Dickinson
Mark Dickinson added the comment: Fraction constructor modified to accept all numeric strings in r71806 (py3k), 71808 (trunk). Leaving this open for Raymond's suggested change. -- ___ Python tracker __

[issue1712522] urllib.quote throws exception on Unicode URL

2009-04-22 Thread John Nagle
John Nagle added the comment: Note that the problem can't be solved by telling end users to call a different "quote" function. The problem is down inside a library module. "robotparser" is calling "urllib.quote". One of those two library modules needs to be fixed. -- _

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

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4683] urllib2.HTTPDigestAuthHandler fails on third hostname?

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue2756] urllib2 add_header fails with existing unredirected_header

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1327971] HTTPResponse instance has no attribute 'fileno'

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

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

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue1673007] urllib2 requests history + HEAD support

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue1591035] update urlparse to RFC 3986

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy versions: +Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue1643370] recursive urlparse

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue5007] urllib2 HTTPS connection failure (BadStatusLine Exception)

2009-04-22 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed in 2.5, cannot confirm on trunk. Needs confirmation on 2.6 and 3.x. -- keywords: +easy nosy: +ajaksu2 priority: -> normal versions: +Python 3.0 ___ Python tracker

[issue1500504] Alternate RFC 3986 compliant URI parsing module

2009-04-22 Thread Daniel Diniz
Daniel Diniz added the comment: ISTM that gathering the issues where this would help is a good start, but I haven't had the time to do it yet. -- dependencies: +URI parsing library ___ Python tracker ___

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

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3819] urllib2 sends Basic auth across redirects

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

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

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3466] urllib2 should support HTTPS connections with client keys

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy, patch priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue1712522] urllib.quote throws exception on Unicode URL

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue1285440] Digest Authentication not working in all cases

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy, patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue2244] urllib and urllib2 decode userinfo multiple times

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue979407] urllib2 digest auth totally broken

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue1368312] fix for scheme identification in urllib2?

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue634412] RFC 2112 in email package

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue803422] sgmllib doesn't support hex or Unicode character references

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue824371] ntpath.expandvars doesn't expand Windows-style variables.

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue834840] Unhelpful error message from cgi module

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue845560] imaplib: traceback from _checkquote with empty string

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy, patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue868571] HTTPResponse.read(amt) fails when response length is UNKNOWN

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue849097] Request: getpos() for sgmllib

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue3613] base64.encodestring does not actually accept strings

2009-04-22 Thread Daniel Diniz
Daniel Diniz added the comment: We still need to solve the encodebytes/encodestring stuff. -- stage: -> test needed ___ Python tracker ___ _

[issue1172011] BaseCookie does not call value_decode

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue5256] rlcompleter adds builtins when custom dict is used

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue894936] Have a split corresponding with os.path.join

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue900112] cgi.fieldStorage doesn't grok standards env. variables

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue798058] IDLE / PyOS_InputHook

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +gpolo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue775321] plistlib error handling

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

  1   2   >