Skip to content

Instantly share code, notes, and snippets.

@selfboot
Created June 13, 2016 12:56
Show Gist options
  • Select an option

  • Save selfboot/b1787c8ab4159de9f797fc13dad47808 to your computer and use it in GitHub Desktop.

Select an option

Save selfboot/b1787c8ab4159de9f797fc13dad47808 to your computer and use it in GitHub Desktop.
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# @Author: xuezaigds@gmail.com
# @Last Modified time: 2016-06-13 20:54:09
import cProfile
from time_profile import *
import pstats
cProfile.run("timeit_profile()", "timeit")
p = pstats.Stats('timeit')
p.sort_stats('time')
p.print_stats(6)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment