Anders and Briegel in Python
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

14 řádky
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)