(c, encodeO, encodeWS)
| 796 | |
| 797 | |
| 798 | def SPECIAL(c, encodeO, encodeWS): |
| 799 | c = ord(c) |
| 800 | return ( |
| 801 | (c > 127 or utf7_special[c] == 1) |
| 802 | or (encodeWS and (utf7_special[(c)] == 2)) |
| 803 | or (encodeO and (utf7_special[(c)] == 3)) |
| 804 | ) |
| 805 | |
| 806 | |
| 807 | def B64(n): |