home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 November / maximum-cd-2010-11.iso / DiscContents / calibre-0.7.13.msi / file_2299 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-08-06  |  446 b   |  10 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. import string
  5. _ascii_trans_table = string.maketrans(string.ascii_lowercase, string.ascii_uppercase)
  6.  
  7. def ascii_upper(s):
  8.     return s.translate(_ascii_trans_table)
  9.  
  10.