~renpytom/renpy/main

« back to all changes in this revision

Viewing changes to renpy/bootstrap.py

  • Committer: Tom
  • Date: 2012-06-24 00:09:22 UTC
  • Revision ID: pytom@bishoujo.us-20120624000922-x93ednlyjtoo43k1
Rewrite renpy.sh so it can choose between linux-x86 and linux-x86_64.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
FSENCODING = sys.getfilesystemencoding() or "utf-8"
29
29
 
30
 
 
31
30
# Extra things used for distribution.
32
31
def extra_imports():
33
32
    import datetime; datetime
43
42
    import encodings.utf_16_le; encodings.utf_16_le
44
43
    import encodings.utf_32_be; encodings.utf_32_be
45
44
    import encodings.latin_1; encodings.latin_1
 
45
    import encodings.hex_codec; encodings.hex_codec
46
46
    import math; math
47
47
    import glob; glob
48
48
    import pickle; pickle
60
60
    import pygame.locals; pygame.locals
61
61
    import pygame.color; pygame.color
62
62
    import pygame.colordict; pygame.colordict
63
 
    import posixpath; posixpath # W0403
 
63
    import posixpath; posixpath
64
64
    import ctypes; ctypes
65
65
    import ctypes.wintypes; ctypes.wintypes
66
66
    import EasyDialogs; EasyDialogs #@UnresolvedImport
71
71
    import urllib; urllib
72
72
    import urllib2; urllib2
73
73
    import codecs; codecs
 
74
    import rsa; rsa
74
75
    
75
76
trace_file = None
76
77
trace_local = None