[issue901727] extra_path kwarg to setup() undocumented

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- assignee: tarek - d...@python nosy: +d...@python stage: - patch review versions: +Python 3.2 -Python 2.6, Python 2.7, Python 3.0 ___ Python tracker rep...@bugs.python.org

[issue902061] pydoc insists upon producing file: URLs

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Closed as a duplicate of #2001, but please keep in mind msg75324. -- nosy: +BreamoreBoy resolution: - duplicate status: open - closed ___ Python tracker rep...@bugs.python.org

[issue2001] Pydoc interactive browsing enhancement

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I've closed #902061 as a duplicate of this, but please keep in mind msg75324 from that issue. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2001

[issue902151] Thread start - strange error under Cygwin

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I'll close this in a couple of weeks unless someone shows an interest in running with it. -- nosy: +BreamoreBoy status: open - pending versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

[issue903339] OpenVMS file system and UNIVERSAL_NEWLINES support

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I'll close this in a couple of weeks unless anyone objects. -- nosy: +BreamoreBoy status: open - pending ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue903339

[issue904498] threading docs, start error should be specified

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: The docs for start() state This method will raise a RuntimeException if called more than once on the same thread object. -- nosy: +BreamoreBoy resolution: - out of date status: open - closed

[issue917120] imaplib: incorrect quoting in commands

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I agree with Dan's comment in msg112741 about dead code so this only applies to 2.7. I'll raise a new issue to get the dead code removed from py3k. -- nosy: +BreamoreBoy stage: unit test needed - patch review

[issue9638] remove dead code from py3k imaplib

2010-08-19 Thread Mark Lawrence
New submission from Mark Lawrence breamore...@yahoo.co.uk: The title says it all. -- files: imaplibpy3k.diff keywords: patch messages: 114331 nosy: BreamoreBoy priority: normal severity: normal stage: patch review status: open title: remove dead code from py3k imaplib versions: Python

[issue9638] remove dead code from py3k imaplib

2010-08-19 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com added the comment: Fixed in r84195 and r84196. -- nosy: +orsenthil resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue919238] Recursive variable definition causes sysconfig infinite loop

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- stage: - patch review versions: +Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue919238 ___

[issue2001] Pydoc interactive browsing enhancement

2010-08-19 Thread René Liebscher
Changes by René Liebscher r.liebsc...@gmx.de: -- nosy: +r.liebscher ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2001 ___ ___ Python-bugs-list

[issue1046092] HTMLParser fix to accept mailformed tag attributes

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: The patch is a one line change to a compiled regex. Would someone with html and/or regex knowledge like to comment, thanks, as I've no idea as to the implications. I also agree with comments in msg81692 regarding better unit tests.

[issue976613] socket timeout problems on Solaris

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Is this still a problem on Solaris? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue976613

[issue706263] print raises exception when no console available

2010-08-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: I use Windows XP. Note that nothing is displayed on screen. there is just a error.txt file in the current directory. -- ___ Python tracker rep...@bugs.python.org

[issue9639] urllib2's AbstractBasicAuthHandler is limited to 6 requests

2010-08-19 Thread Marcus Huewe
New submission from Marcus Huewe suse-...@gmx.de: It seems that commit r81636 broke urllib2's AbstractBasicAuthHandler because the retried attribute isn't reset on success. Therefore it's limited to 6 requests. The attached patch should fix this problem. -- components: Library (Lib)

[issue9636] {'key': 'value'}[b'key'] raises a BytesWarning

2010-08-19 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Oh. flox told me that there are other cases raising BytesWarning: 'abc' in {b'abc'} 'abc' in (b'xxx',) 'abc' in [b'xxx'] I suppose that the behaviour is different (only fail with same value / fail with different values) because

[issue9636] {'key': 'value'}[b'key'] raises a BytesWarning

2010-08-19 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Various annoyances: some_set = {'oOO', b'oOO'} BytesWarning: Comparison between bytes and string 'a' in {b'', ''} BytesWarning: Comparison between bytes and string 'abc' in (b'def', 123) BytesWarning: Comparison between bytes and

[issue9636] {'key': 'value'}[b'key'] raises a BytesWarning

2010-08-19 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9636 ___ ___

[issue9639] urllib2's AbstractBasicAuthHandler is limited to 6 requests

2010-08-19 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com added the comment: The patch is fine. -- assignee: - orsenthil nosy: +orsenthil resolution: - accepted ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9639

[issue8595] Explain the default timeout in http-client-related libraries

2010-08-19 Thread Anders Sandvig
Changes by Anders Sandvig anders.sand...@gmail.com: -- nosy: +anders.sandvig ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8595 ___ ___

[issue9640] Improved doctest REPORT_*DIFFs with ELLIPSIS and/or NORMALIZE_WHITESPACE

2010-08-19 Thread W. Trevor King
New submission from W. Trevor King wk...@drexel.edu: I had been struggling to find the failure-causing mismatch in a doctest with lots of output. REPORT_UDIFF gave lots of false mismatches because I was also using NORMALIZE_WHITESPACE. Looking through the doctest.py source, I saw a comment

[issue9640] Improved doctest REPORT_*DIFFs with ELLIPSIS and/or NORMALIZE_WHITESPACE

2010-08-19 Thread W. Trevor King
W. Trevor King wk...@drexel.edu added the comment: Here's my patch, or pull from my Mercurial repository http://www.physics.drexel.edu/~wking/code/hg/hgwebdir.cgi/python/rev/6638df20c1a4 -- keywords: +patch Added file: http://bugs.python.org/file18575/doctest_diff.patch

[issue9632] Remove sys.setfilesystemencoding()

2010-08-19 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: New version of the patch: remove also _Py_SetFileSystemEncoding(). -- Added file: http://bugs.python.org/file18576/remove_sys_setfilesystemencoding-2.patch ___ Python tracker

[issue9632] Remove sys.setfilesystemencoding()

2010-08-19 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@haypocalc.com: Removed file: http://bugs.python.org/file18565/remove_sys_setfilesystemencoding.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9632 ___

[issue9641] httplib/ftplib: timeout parameter not applied correctly

2010-08-19 Thread Anders Sandvig
New submission from Anders Sandvig anders.sand...@gmail.com: From http://mail.python.org/pipermail/python-dev/2010-July/101266.html: Consider the following code for retreieving a web page using httplib: def get_url(hostname, port, url, timeout=5): con =

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-19 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Oh, I realized that PYTHONFSENCODING is ignored on Windows and Mac OS X. r84201 and r84202 fix test_sys, and r84203 fixes the documentation and Python usage (hide PYTHONFSENCODING variable in Python help on Windows and Mac OS X).

[issue901727] extra_path kwarg to setup() undocumented

2010-08-19 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: The patch has some words missing (“to put between”), but I can add them. I’m also going to include the example that was in Bob’s message, since the bit of doc in the table alone is not enough to understand clearly what this does IMO. I’m

[issue901727] extra_path kwarg to setup() undocumented

2010-08-19 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue901727 ___ ___ Python-bugs-list

[issue6822] Error calling .storlines from ftplib

2010-08-19 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: I do not agree with Antoine. For binary transfer, another method is called, and it does work fine. However, storelines would be called for ASCII mode, in which encoding and decoding should be done by the FTP program. ASCII mode would

[issue9641] httplib/ftplib: timeout parameter not applied correctly

2010-08-19 Thread Anders Sandvig
Anders Sandvig anders.sand...@gmail.com added the comment: The best (and simplest) solution seems to be option 2). Affected methods are found to be HTTPConnection.connect() and HTTPSConnection.connect() in Lib/httplib.py (Lib/http/client.py for 3.x) and FTP.connect() and FTP.ntransfercmd() in

[issue9635] Add Py_BREAKPOINT and sys.breakpoint hooks

2010-08-19 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- title: RFE(patch): add Py_BREAKPOINT and sys.breakpoint hooks - Add Py_BREAKPOINT and sys.breakpoint hooks ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9635

[issue9630] Reencode filenames when setting the filesystem encoding

2010-08-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: I would rename the feature to something like redecode-modules: the filenames were decoded with the wrong encoding, and must be decoded again. -- nosy: +amaury.forgeotdarc ___ Python tracker

[issue9630] Reencode filenames when setting the filesystem encoding

2010-08-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Some thoughts: since the modules were successfully imported, surely it means that their filenames where correctly computed and encoded? So why is the __filename__ attribute wrong? -- ___

[issue9642] #ifdef and mbcs: don't check for defined(HAVE_USABLE_WCHAR_T)

2010-08-19 Thread STINNER Victor
New submission from STINNER Victor victor.stin...@haypocalc.com: mbcs codec functions are surrounded by: #if defined(MS_WINDOWS) defined(HAVE_USABLE_WCHAR_T) (especially in unicodeobject.c and _codecsmodule.c) or #ifdef MS_WIN32 (in unicodeobject.h) or #if defined(MS_WINDOWS)

[issue901727] extra_path kwarg to setup() undocumented

2010-08-19 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: I don't understand why distutils won't even get documentation updates. Bob's report is about undocumented functionality that is used in real life and was the best way to install python distributions in a self-contained way before

[issue9630] Reencode filenames when setting the filesystem encoding

2010-08-19 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: since the modules were successfully imported, surely it means that their filenames where correctly computed and encoded? So why is the __filename__ attribute wrong? Python starts with 'utf-8' encoding. If the new encoding is

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-19 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: STINNER Victor wrote: STINNER Victor victor.stin...@haypocalc.com added the comment: Oh, I realized that PYTHONFSENCODING is ignored on Windows and Mac OS X. r84201 and r84202 fix test_sys, and r84203 fixes the documentation and

[issue9642] #ifdef and mbcs: don't check for defined(HAVE_USABLE_WCHAR_T)

2010-08-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: It's true that for now, MS_WINDOWS implies HAVE_USABLE_WCHAR_T and PyUnicodeObject directly used as a WCHAR array. I'd prefer a new symbol though. Why not something like HAVE_MBCS_CODEC? -- nosy: +amaury.forgeotdarc

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

2010-08-19 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: It is, however, clearly languishing for want of an implementer... -- status: open - languishing ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue894936

[issue9636] {'key': 'value'}[b'key'] raises a BytesWarning

2010-08-19 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9636 ___ ___ Python-bugs-list

[issue805194] Inappropriate error received using socket timeout

2010-08-19 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: I'm not sure in what way the error is inappropriate. Python simply propagates whatever errno the C library sets on failure. As for the comment that connect() shouldn't be called twice, this was fixed in 2.6 by r60101. -- nosy: +pitrou

[issue9636] {'key': 'value'}[b'key'] raises a BytesWarning

2010-08-19 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Well, that's what BytesWarning is for. I agree it is annoying in normal use, but it is meant to ease porting of 2.x code. That's why it is only enabled when you use the corresponding command-line switch. The warning in the dict case is

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-19 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Oh, I realized that PYTHONFSENCODING is ignored on Windows and Mac OS X. r84201 and r84202 fix test_sys, and r84203 fixes the documentation and Python usage (hide PYTHONFSENCODING variable in Python help on Windows and Mac OS

[issue706263] print raises exception when no console available

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Ah I was misreading things, I too can confirm that it is still a problem. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue706263 ___

[issue5127] Use Py_UCS4 instead of Py_UNICODE in unicodectype.c

2010-08-19 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Committed with r84177. -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5127

[issue8595] Explain the default timeout in http-client-related libraries

2010-08-19 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: That way, if _HTTP_DEFAULT_TIMEOUT is never set, it will use the the socket timeout. Admittedly I'd rather see all uses of module globals go away, but I think this would be a good compromise. Why not provide

[issue8595] Explain the default timeout in http-client-related libraries

2010-08-19 Thread Eric Smith
Eric Smith e...@trueblade.com added the comment: On 8/19/2010 9:14 AM, Antoine Pitrou wrote: Why not provide {httplib,urllib}.{set,get}defaulttimeout() instead? Yes, I'm assuming that's how _HTTP_DEFAULT_TIMEOUT would be set and queried. -- ___

[issue9641] httplib/ftplib: timeout parameter not applied correctly

2010-08-19 Thread Anders Sandvig
Anders Sandvig anders.sand...@gmail.com added the comment: socket.create_connection() does in fact set the timeout of the resulting socket object, so the issue is not an issue after all. The problems I experienced was a result of sending the timeout as the third parameter to the

[issue9636] {'key': 'value'}[b'key'] raises a BytesWarning

2010-08-19 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: The warning in the dict case is especially important It's worth noting that this warning is dependent on hash() producing the same values for 'equivalent' bytes and str instances. This seems a bit fragile, and is something that could

[issue979407] urllib2 digest auth totally broken

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue979407 ___

[issue979658] Improve HTML documentation of a directory

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- nosy: +ron_adam versions: +Python 3.2 -Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue979658 ___

[issue984870] curses: getmaxyx() breaks when the window shrinks

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue984870 ___

[issue9576] logging.addLevelName in file-based configurations

2010-08-19 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk added the comment: While custom levels are supported for the rare cases where they're needed, they're not really encouraged. For example, if third-party libraries each set their own custom logging levels, it would be a headache to integrate them into an

[issue989712] Support using Tk without a mainloop

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: There were no comments in reply to msg84306, anyone got any comments now? If not could someone take a look at the patch and if happy get it committed. -- nosy: +BreamoreBoy stage: unit test needed - patch review versions:

[issue991266] Cookie.py does not correctly quote Morsels

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Can we have this committed please, msg82420 says the patches are ok. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue991266 ___

[issue992389] attribute error after non-from import

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue992389 ___

[issue993766] bdist_dumb and --relative on Windows fails

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- stage: - needs patch type: - behavior versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue993766

[issue995907] memory leak with threads and enhancement of the timer class

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 3.2 -Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue995907 ___

[issue979407] urllib2 digest auth totally broken

2010-08-19 Thread Anders Sandvig
Changes by Anders Sandvig anders.sand...@gmail.com: -- nosy: +anders.sandvig ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue979407 ___ ___

[issue999444] compiler module doesn't support unicode characters in laiter

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: The compiler package has been removed from py3k. -- nosy: +BreamoreBoy resolution: - out of date status: open - closed ___ Python tracker rep...@bugs.python.org

[issue1005895] curses for win32

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Brian or Tim any interest in this? I consider #2889 to be a duplicate of this and not the other way around. -- nosy: +BreamoreBoy, brian.curtin, tim.golden stage: - patch review type: - feature request versions: +Python 3.2

[issue5689] please support lzma compression as an extension and in the tarfile module

2010-08-19 Thread Eysteinn Torfi Kristinsson
Changes by Eysteinn Torfi Kristinsson e...@internet.is: -- nosy: +eysispeisi ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5689 ___ ___

[issue2889] curses for windows (alternative patch)

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Brian or Tim any interest in this? -- nosy: +BreamoreBoy, brian.curtin, tim.golden stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2889

[issue1007223] SGI (IRIX6.5.24) Problems building nismodule.c

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Closed as no reply to msg82076. -- nosy: +BreamoreBoy resolution: - out of date status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1007223

[issue1005895] curses for win32

2010-08-19 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: I have zero knowledge and experience when it comes to curses so I'm afraid I can't really provide much here. One thing I can say is that this patch would have to be converted to be compiled by MSVC rather than MinGW. That was an early issue with

[issue992389] attribute error after non-from import

2010-08-19 Thread Guido van Rossum
Changes by Guido van Rossum gu...@python.org: -- nosy: -gvanrossum ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue992389 ___ ___ Python-bugs-list

[issue1015254] Create cgi.FieldStorage._get_new_instance method as factory

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I'll close in a couple of weeks unless anyone objects. -- nosy: +BreamoreBoy status: open - pending ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1015254

[issue1016626] distutils support for swig is under par

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1016626 ___ ___

[issue2624] swig support in distutils should use the build and temp dirs

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2624 ___ ___

[issue1018492] Solaris: reentrancy issues

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: No reply to msg82073. -- nosy: +BreamoreBoy resolution: - out of date status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1018492

[issue1020188] Use Py_CLEAR where necessary to avoid crashes

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Any interest in this or can it be closed? -- nosy: +BreamoreBoy stage: - patch review type: - behavior versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker

[issue1021318] PyThreadState_Next not thread safe?

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: No reply to msg82072. -- nosy: +BreamoreBoy resolution: - out of date status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1021318

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

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- stage: unit test needed - patch review versions: -Python 2.7, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1027206 ___

[issue1028088] Cookies without values are silently ignored (by design?)

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Any interest in this? -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1028088 ___

[issue1038591] Python 2.3+ socket._fileobject handles EAGAIN with data loss

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Is this still valid? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1038591

[issue1038909] pydoc method documentation lookup enhancement

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- nosy: +ron_adam ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1038909 ___ ___

[issue1043134] mimetypes.guess_extension('text/plain') == '.ksh' ???

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I'll close this in a couple of weeks unless someone wants it kept open. -- nosy: +BreamoreBoy status: open - pending ___ Python tracker rep...@bugs.python.org

[issue9636] {'key': 'value'}

2010-08-19 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: It's worth noting that this warning is dependent on hash() producing the same values for 'equivalent' bytes and str instances. This seems a bit fragile, and is something that could potentially change in the future---with bytes and str

[issue9639] urllib2's AbstractBasicAuthHandler is limited to 6 requests

2010-08-19 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com added the comment: Fixed in r84207(release27-maint). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9639 ___

[issue1047397] cgitb failures

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Anyone interested in running with this as it's still a problem in all versions? -- nosy: +BreamoreBoy stage: unit test needed - patch review versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6

[issue1047540] Turtle.py hangs Idle

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1047540 ___

[issue9636] {'key': 'value'}

2010-08-19 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Actually, no, the consistency of hashes is necessary for the BytesWarning to be useful with dicts. Yes. That's precisely the point I was trying to make. (Probably badly.) That's why I was calling the usefulness of BytesWarning with dicts

[issue1049450] Solaris: EINTR exception in select/socket calls in telnetlib

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1049450 ___

[issue1050268] rfc822.parseaddr is broken, breaks sendmail call in smtplib

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1050268 ___

[issue9636] BytesWarning annoyances {'key': 'value'}.get(b'key')

2010-08-19 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- title: {'key': 'value'} - BytesWarning annoyances {'key': 'value'}.get(b'key') ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9636 ___

[issue1052827] filelist.findall should not fail on dangling symlinks

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- type: - behavior versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1052827 ___

[issue1053365] nntplib: add support for NNTP over SSL

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Can someone provide an updated unit test to accompany the code patch. -- nosy: +BreamoreBoy versions: +Python 3.2 -Python 2.7 ___ Python tracker rep...@bugs.python.org

[issue1053687] PyOS_InputHook not called in IDLE subprocess

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- nosy: +gpolo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1053687 ___ ___ Python-bugs-list

[issue1054041] Python doesn't exit with proper resultcode on SIGINT

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I'll close this in a couple of weeks unless someone wants it kept open. -- nosy: +BreamoreBoy status: open - pending type: feature request - behavior versions: +Python 3.1, Python 3.2 ___

[issue9643] urllib2 - Basic, Digest Auth Handlers Retry will give 401 code instead of 407

2010-08-19 Thread Senthil Kumaran
New submission from Senthil Kumaran orsent...@gmail.com: The retry logic and code used by ProxyBasicAuthHandler and ProxyDigestAuthHandler are same as normal authentication handlers. While this reuse is good, there is a problem that, on authentication failure, the HTTPError code is hardcoded

[issue9639] urllib2's AbstractBasicAuthHandler is limited to 6 requests

2010-08-19 Thread Senthil Kumaran
Senthil Kumaran orsent...@gmail.com added the comment: Fixed in py3k (r84210) and release31-maint(r84211). I discovered a new problem while fixing this. It will be taken care in issue9643. -- resolution: accepted - fixed stage: - committed/rejected status: open - closed

[issue9643] urllib2 - Basic, Digest Proxy Auth Handlers failure will give 401 code instead of 407

2010-08-19 Thread Senthil Kumaran
Changes by Senthil Kumaran orsent...@gmail.com: -- title: urllib2 - Basic,Digest Auth Handlers Retry will give 401 code instead of 407 - urllib2 - Basic,Digest Proxy Auth Handlers failure will give 401 code instead of 407 ___ Python tracker

[issue1055864] HTMLParser not compliant to XHTML spec

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I think this should be closed as it's similar to #1051840, agreed? -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1055864

[issue1057417] New BaseSMTPServer module

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I can't see this being accepted as it's not had public exposure, at least not that I'm aware of. Other opinions welcomed. -- nosy: +BreamoreBoy versions: -Python 2.7 ___ Python tracker

[issue1058305] HTMLParser.locatestartagend regex too stringent

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I'll close this in a couple of weeks unless anyone objects. -- nosy: +BreamoreBoy status: open - pending versions: +Python 3.2 -Python 2.7 ___ Python tracker rep...@bugs.python.org

[issue1059244] distutil bdist hardcodes the python location

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- stage: - needs patch type: - behavior versions: +Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1059244

[issue1062277] Pickle breakage with reduction of recursive structures

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- type: feature request - behavior versions: +Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1062277 ___

[issue1067702] urllib fails with multiple ftps

2010-08-19 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1067702 ___

[issue1067702] urllib fails with multiple ftps

2010-08-19 Thread Senthil Kumaran
Changes by Senthil Kumaran orsent...@gmail.com: -- assignee: - orsenthil ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1067702 ___ ___

[issue1069092] segfault on printing nested sequences of None/Ellipsis

2010-08-19 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: FYI the generic solution mentioned in msg75364 can now be found at #8863 -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1069092

  1   2   >