Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #29033

Re: Python2.4 on Win32 suddenly started crashing last night

Date 2012-09-13 08:35 -0500
From Tim Chase <python.list@tim.thechases.com>
Subject Re: Python2.4 on Win32 suddenly started crashing last night
References <5051D49B.1070009@tim.thechases.com> <5051DBC9.9060009@mrabarnett.plus.com>
Newsgroups comp.lang.python
Message-ID <mailman.605.1347543290.27098.python-list@python.org> (permalink)

Show all headers | View raw


On 09/13/12 08:12, MRAB wrote:
> I've just downloaded, installed and tested Python 2.4.4. No crash.
> 
> This is with Windows XP Pro (32-bit).

Could I get the MD5 of your $PYTHONDIR\DLLs\_socket.pyd to see if it
matches mine?

>>> data = file('_socket.pyd', 'rb').read()
>>> import md5
>>> md5.md5(data).hexdigest()
'7a7fc2d9e9df65690658c989bd9e95bb'

It's looking like it might be a corrupt DLL or something to which it
links is causing issues.  Alternatively, it might be possible to
find/download the 2.4.3 _socket.pyd, or possibly overwrite it with a
2.4.4 _socket.pyd (I don't know how backwards compatible the ABI is
for binary modules)

Thanks!

-tkc

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Python2.4 on Win32 suddenly started crashing last night Tim Chase <python.list@tim.thechases.com> - 2012-09-13 08:35 -0500

csiph-web