[issue24955] webbrowser broken on Mac OS X when using the BROWSER variable

2017-07-21 Thread Eric Huss
Changes by Eric Huss : -- nosy: +ehuss ___ Python tracker <http://bugs.python.org/issue24955> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue30392] default webbrowser fails on macOS Sierra 10.12.5

2017-07-21 Thread Eric Huss
Changes by Eric Huss : -- nosy: +ehuss ___ Python tracker <http://bugs.python.org/issue30392> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue1692335] Fix exception pickling: Move initial args assignment to BaseException.__new__

2010-06-29 Thread Eric Huss
Eric Huss added the comment: Alexander, the use case I was involved with was an RPC system which allowed exceptions to propagate over the connection. In this case, you do not have absolute control over which exceptions may be raised, or who wrote the code that is raising the exception

[issue6338] Error message displayed on stderr when no C compiler is present with ctypes

2009-06-24 Thread Eric Huss
New submission from Eric Huss : Importing the "uuid" module on a posix system (FreeBSD in my case) that does not have a C compiler causes "cc: not found" to be sent to stderr. This is because it imports ctypes and calls ctypes.util.find_library which attempts to determine

[issue1692335] Fix exception pickling: Move initial args assignment to BaseException.__new__

2008-11-18 Thread Eric Huss
Eric Huss <[EMAIL PROTECTED]> added the comment: In the attached test_exception_pickle.py file, class C and D cannot be unpickled (raises TypeError). class C(Exception): """Extension with values, args not set.""" def __init__(self, foo):

[issue1692335] Fix exception pickling: Move initial args assignment to BaseException.__new__

2008-11-18 Thread Eric Huss
Eric Huss <[EMAIL PROTECTED]> added the comment: I'm disappointed to see this closed. Exception pickling is still broken in some cases in 2.6. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pyt

[issue1622] zipfile hangs on certain zip files

2008-03-26 Thread Eric Huss
Eric Huss <[EMAIL PROTECTED]> added the comment: Sorry for the long delay. Yes, the latest patch looks very good to me. -Eric __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1622] zipfile hangs on certain zip files

2008-01-10 Thread Eric Huss
Eric Huss added the comment: Alan, your changes look good to me, but it is missing my patch in this bug that fixes the sign issue in _decodeExtra. While you're there, you might as well change the other 3 unpack lines to use a capital Q. -Eric __ Tracker &l

[issue1622] zipfile hangs on certain zip files

2008-01-06 Thread Eric Huss
Eric Huss added the comment: Some of this work has already been done, see issue 1189216. You'll obviously need to keep the CRC unpack as signed because the binascii module uses signed values. Some header values are stored as 0x to denote the value is stored in the 64-bit ext

[issue1622] zipfile hangs on certain zip files

2007-12-13 Thread Eric Huss
New submission from Eric Huss: Creating a ZipFile object with a certain type of zip file can cause it to go into an infinite loop. The problem is the new extra field parsing routine. It unpacks integers as a signed value, which if they are sufficiently large (over 32767), then it will loop