Changes between Initial Version and Version 1 of Ticket #23399, comment 3
- Timestamp:
- Sep 4, 2014, 3:43:07 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23399, comment 3
initial v1 10 10 raise ValueError("Base36 conversion input too large.") 11 11 c = '0123456789abcdefghijklmnopqrstuvwxyz' 12 if 0 <=n < 36:12 if n < 36: 13 13 return c[n] 14 14 b36 = ''