(ch)
| 840 | |
| 841 | |
| 842 | def _IS_BASE64(ch): |
| 843 | return ( |
| 844 | (ord("A") <= ch <= ord("Z")) |
| 845 | or (ord("a") <= ch <= ord("z")) |
| 846 | or (ord("0") <= ch <= ord("9")) |
| 847 | or ch == ord("+") |
| 848 | or ch == ord("/") |
| 849 | ) |
| 850 | |
| 851 | |
| 852 | def _FROM_BASE64(ch): |
no test coverage detected