Changes between Initial Version and Version 1 of Ticket #23399, comment 3


Ignore:
Timestamp:
Sep 4, 2014, 3:43:07 AM (10 years ago)
Author:
None

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23399, comment 3

    initial v1  
    1010            raise ValueError("Base36 conversion input too large.")
    1111    c = '0123456789abcdefghijklmnopqrstuvwxyz'
    12     if 0 <= n < 36:
     12    if n < 36:
    1313        return c[n]
    1414    b36 = ''
Back to Top