Re: Python-sybase Digest, Vol 14, Issue 3
Clinton James <[email protected]> Fri, 11 Aug 2006 08:29:33 -0500
| Newsgroups | gmane.comp.python.sybase |
|---|---|
| Message-ID | <[email protected]> |
>> I have a patch for 64 bit machines. Where is bug tracking? I can't seem >> to find it. > > Seems to be right here on this list. Post your patch if it's not too > big. > > Greg > Sybase.py 188c188 < mn = msg.msgnumber --- > mn = msg.msgnumber & 0xFFFFFFFF I saw 5701 + 0xFFFFFFFF come across as I tried to make a connection. By masking it off I fixed the problem. Not sure if this is the correct solution, but it worked for me. Clinton