Anders and Briegel in Python
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

14 строки
311B

  1. from abp import make_tables
  2. import cProfile, pstats, StringIO
  3. unitaries = make_tables.get_unitaries()
  4. profiler = cProfile.Profile()
  5. profiler.enable()
  6. make_tables.get_cz_table(unitaries)
  7. profiler.disable()
  8. # Print output
  9. stats = pstats.Stats(profiler).strip_dirs().sort_stats('tottime')
  10. stats.print_stats(10)