Python Forum
runctx method of cProfile module.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
runctx method of cProfile module.
#5
import cProfile
def f1():
 f = [i**2 for i in range(1,200001)]
 return f
def f2():
 g = (j**2 for j in range(1,200001))
 yield g
cProfile.runctx('f1()',globals(),locals())
cProfile.runctx('f2()',globals(),locals())

'''here's ur solution'''
Reply


Messages In This Thread
RE: runctx method of cProfile module. - by buran - Oct-21-2019, 10:59 AM
RE: runctx method of cProfile module. - by buran - Oct-22-2019, 06:01 AM
RE: runctx method of cProfile module. - by FaizKarim - Oct-23-2019, 05:43 PM
RE: runctx method of cProfile module. - by buran - Oct-23-2019, 06:13 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020