50 except (InvalidPlistException, NotBinaryPlistException) as e: |
50 except (InvalidPlistException, NotBinaryPlistException) as e: |
51 print("Not a plist:", e) |
51 print("Not a plist:", e) |
52 </pre> |
52 </pre> |
53 """ |
53 """ |
54 |
54 |
55 from __future__ import unicode_literals # __IGNORE_WARNING__ |
55 from __future__ import unicode_literals |
56 try: |
56 try: |
57 str = unicode |
57 str = unicode # __IGNORE_WARNING__ |
58 except (NameError): |
58 except (NameError): |
59 pass |
59 pass |
60 |
60 |
61 # |
61 # |
62 # Ported from the Python 2 biplist.py script. |
62 # Ported from the Python 2 biplist.py script. |