Advertisement
Guest User

Untitled

a guest
Sep 8th, 2011
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 3.59 KB | None | 0 0
  1. [translation] PyPy config object:
  2. [translation] [objspace]
  3. [translation]     honor__builtins__ = False
  4. [translation]     nofaking = True
  5. [translation]     [opcodes]
  6. [translation]         CALL_METHOD = True
  7. [translation]     [std]
  8. [translation]         builtinshortcut = True
  9. [translation]         getattributeshortcut = True
  10. [translation]         newshortcut = True
  11. [translation]         optimized_list_getitem = True
  12. [translation]         withcelldict = True
  13. [translation]         withmapdict = True
  14. [translation]         withmethodcache = True
  15. [translation]         withprebuiltchar = True
  16. [translation]         withrangelist = True
  17. [translation]         withtypeversion = True
  18. [translation]     [usemodules]
  19. [translation]         __pypy__ = True
  20. [translation]         _ast = True
  21. [translation]         _bisect = True
  22. [translation]         _codecs = True
  23. [translation]         _collections = True
  24. [translation]         _continuation = True
  25. [translation]         _ffi = True
  26. [translation]         _hashlib = True
  27. [translation]         _io = True
  28. [translation]         _locale = True
  29. [translation]         _lsprof = True
  30. [translation]         _md5 = True
  31. [translation]         _minimal_curses = True
  32. [translation]         _multibytecodec = True
  33. [translation]         _multiprocessing = True
  34. [translation]         _pickle_support = True
  35. [translation]         _random = True
  36. [translation]         _rawffi = True
  37. [translation]         _sha = True
  38. [translation]         _socket = True
  39. [translation]         _sre = True
  40. [translation]         _ssl = True
  41. [translation]         _testing = True
  42. [translation]         _warnings = True
  43. [translation]         _weakref = True
  44. [translation]         array = True
  45. [translation]         binascii = True
  46. [translation]         bz2 = True
  47. [translation]         cStringIO = True
  48. [translation]         cmath = True
  49. [translation]         cpyext = True
  50. [translation]         crypt = True
  51. [translation]         errno = True
  52. [translation]         fcntl = True
  53. [translation]         gc = True
  54. [translation]         imp = True
  55. [translation]         itertools = True
  56. [translation]         marshal = True
  57. [translation]         math = True
  58. [translation]         micronumpy = True
  59. [translation]         mmap = True
  60. [translation]         operator = True
  61. [translation]         parser = True
  62. [translation]         posix = True
  63. [translation]         pwd = True
  64. [translation]         pyexpat = True
  65. [translation]         pypyjit = True
  66. [translation]         rctime = True
  67. [translation]         select = True
  68. [translation]         signal = True
  69. [translation]         struct = True
  70. [translation]         symbol = True
  71. [translation]         termios = True
  72. [translation]         thread = True
  73. [translation]         time = True
  74. [translation]         token = True
  75. [translation]         unicodedata = True
  76. [translation]         zipimport = True
  77. [translation]         zlib = True
  78. -----
  79. translation] translate.py configuration:
  80. [translation] [translate]
  81. [translation]     opt = jit
  82. [translation] translation configuration:
  83. [translation] [translation]
  84. [translation]     backend = c
  85. [translation]     continuation = True
  86. [translation]     gc = minimark
  87. [translation]     gcrootfinder = asmgcc
  88. [translation]     gctransformer = framework
  89. [translation]     jit = True
  90. [translation]     jit_ffi = True
  91. [translation]     list_comprehension_operations = True
  92. [translation]     rweakref = True
  93. [translation]     secondaryentrypoints = cpyext
  94. [translation]     shared = False
  95. [translation]     thread = True
  96. [translation]     type_system = lltype
  97. [translation]     withsmallfuncsets = 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement