t167.trans 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. Module(body=[Assign(targets=[Name(id='big',
  2. ctx=Store())],
  3. value=Num(n=123456789012345678901234567890)),
  4. Print(dest=None,
  5. values=[BinOp(left=Str(s="'%d'"),
  6. op=Mod(),
  7. right=Name(id='big',
  8. ctx=Load()))],
  9. nl=True),
  10. Print(dest=None,
  11. values=[BinOp(left=Str(s="'%d'"),
  12. op=Mod(),
  13. right=UnaryOp(op=USub(),
  14. operand=Name(id='big',
  15. ctx=Load())))],
  16. nl=True),
  17. Print(dest=None,
  18. values=[BinOp(left=Str(s="'%5d'"),
  19. op=Mod(),
  20. right=UnaryOp(op=USub(),
  21. operand=Name(id='big',
  22. ctx=Load())))],
  23. nl=True),
  24. Print(dest=None,
  25. values=[BinOp(left=Str(s="'%31d'"),
  26. op=Mod(),
  27. right=UnaryOp(op=USub(),
  28. operand=Name(id='big',
  29. ctx=Load())))],
  30. nl=True),
  31. Print(dest=None,
  32. values=[BinOp(left=Str(s="'%32d'"),
  33. op=Mod(),
  34. right=UnaryOp(op=USub(),
  35. operand=Name(id='big',
  36. ctx=Load())))],
  37. nl=True),
  38. Print(dest=None,
  39. values=[BinOp(left=Str(s="'%-32d'"),
  40. op=Mod(),
  41. right=UnaryOp(op=USub(),
  42. operand=Name(id='big',
  43. ctx=Load())))],
  44. nl=True),
  45. Print(dest=None,
  46. values=[BinOp(left=Str(s="'%032d'"),
  47. op=Mod(),
  48. right=UnaryOp(op=USub(),
  49. operand=Name(id='big',
  50. ctx=Load())))],
  51. nl=True),
  52. Print(dest=None,
  53. values=[BinOp(left=Str(s="'%-032d'"),
  54. op=Mod(),
  55. right=UnaryOp(op=USub(),
  56. operand=Name(id='big',
  57. ctx=Load())))],
  58. nl=True),
  59. Print(dest=None,
  60. values=[BinOp(left=Str(s="'%034d'"),
  61. op=Mod(),
  62. right=UnaryOp(op=USub(),
  63. operand=Name(id='big',
  64. ctx=Load())))],
  65. nl=True),
  66. Print(dest=None,
  67. values=[BinOp(left=Str(s="'%034d'"),
  68. op=Mod(),
  69. right=Name(id='big',
  70. ctx=Load()))],
  71. nl=True),
  72. Print(dest=None,
  73. values=[BinOp(left=Str(s="'%0+34d'"),
  74. op=Mod(),
  75. right=Name(id='big',
  76. ctx=Load()))],
  77. nl=True),
  78. Print(dest=None,
  79. values=[BinOp(left=Str(s="'%+34d'"),
  80. op=Mod(),
  81. right=Name(id='big',
  82. ctx=Load()))],
  83. nl=True),
  84. Print(dest=None,
  85. values=[BinOp(left=Str(s="'%34d'"),
  86. op=Mod(),
  87. right=Name(id='big',
  88. ctx=Load()))],
  89. nl=True),
  90. Print(dest=None,
  91. values=[BinOp(left=Str(s="'%.2d'"),
  92. op=Mod(),
  93. right=Name(id='big',
  94. ctx=Load()))],
  95. nl=True),
  96. Print(dest=None,
  97. values=[BinOp(left=Str(s="'%.30d'"),
  98. op=Mod(),
  99. right=Name(id='big',
  100. ctx=Load()))],
  101. nl=True),
  102. Print(dest=None,
  103. values=[BinOp(left=Str(s="'%.31d'"),
  104. op=Mod(),
  105. right=Name(id='big',
  106. ctx=Load()))],
  107. nl=True),
  108. Print(dest=None,
  109. values=[BinOp(left=Str(s="'%32.31d'"),
  110. op=Mod(),
  111. right=Name(id='big',
  112. ctx=Load()))],
  113. nl=True)])