This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author hildjj
Recipients
Date 2005-09-19.23:43:11
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=101697

For example, you could use this (awful hack):

def PROP_TAG(ulPropType,ulPropID):
	a = (ulPropID<<16)|(ulPropType)
        if ulPropID & 0x8000:
          a = int(-((a ^ 0xffffffff) + 1))
        return a


mostly posted here so i can google for it next time...
History
Date User Action Args
2007-08-23 14:28:48adminlinkissue1093389 messages
2007-08-23 14:28:48admincreate