You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
13 lines
361 B
Python
13 lines
361 B
Python
# Bug in 2.7 base64.py
|
|
_b32alphabet = {
|
|
0: 'A', 9: 'J', 18: 'S', 27: '3',
|
|
1: 'B', 10: 'K', 19: 'T', 28: '4',
|
|
2: 'C', 11: 'L', 20: 'U', 29: '5',
|
|
3: 'D', 12: 'M', 21: 'V', 30: '6',
|
|
4: 'E', 13: 'N', 22: 'W', 31: '7',
|
|
5: 'F', 14: 'O', 23: 'X',
|
|
6: 'G', 15: 'P', 24: 'Y',
|
|
7: 'H', 16: 'Q', 25: 'Z',
|
|
8: 'I', 17: 'R', 26: '2',
|
|
}
|