pyActiveSync icon indicating copy to clipboard operation
pyActiveSync copied to clipboard

A pure python library for the ActiveSync protocol

Results 1 pyActiveSync issues
Sort by recently updated
recently updated
newest added

Question 1: From the code, I see ``` if current_element.tag == "Mime": opq_str = self.decode_string(opq_len) else: import binascii opq_str = binascii.hexlify(self.decode_binary(opq_len)) current_element.text = opq_str ``` Is there a reason why...