python是什么变化_观察python中的变量变化

那么这是一种缓慢的做法.它可以修改为观看局部变量更改(只是按名称).这是它的工作原理:我们做sys.settrace并分析每个步骤obj.attr的值.棘手的部分是在线执行之前收到“行”事件(某行被执行).所以,当我们注意到obj.attr已经改变了的时候,我们已经在下一行了,我们不能得到前面的行框(因为没有为每行复制框架,它们被修改).所以在每一行事件中,我将traceback.format_stack保存到watcher.prev_st,如果在trace_command值的下一次调用中发生更改,我们将保存的堆栈跟踪打印到文件中.在每一行上保存回溯是相当昂贵的操作,因此您必须将include关键字设置为您的项目目录列表(或者仅仅是项目的根目录),以便不看其他图书馆如何处理其内容和浪费中央处理器.

watcher.py

import traceback

class Watcher(object):

def __init__(self, obj=None, attr=None, log_file='log.txt', include=[], enabled=False):

"""

Debugger that watches for changes in object attributes

obj - object to be watched

attr - string, name of attribute

log_file - string, where to write output

include - list of strings, debug files only in these directories.

Set it to path of your project otherwise it will take long time

to run on big libraries import and usage.

"""

self.log_file=log_file

with open(self.log_file, 'wb'): pass

self.prev_st = None

self.include = [incl.replace('\\','/') for incl in include]

if obj:

self.value = getattr(obj, attr)

self.obj = obj

self.attr = attr

self.enabled = enabled # Important, must be last line on __init__.

def __call__(self, *args, **kwargs):

kwargs['enabled'] = True

self.__init__(*args, **kwargs)

def check_condition(self):

tmp = getattr(self.obj, self.attr)

result = tmp != self.value

self.value = tmp

return result

def trace_command(self, frame, event, arg):

if event!='line' or not self.enabled:

return self.trace_command

if self.check_condition():

if self.prev_st:

with open(self.log_file, 'ab') as f:

print >>f, "Value of",self.obj,".",self.attr,"changed!"

print >>f,"###### Line:"

print >>f,''.join(self.prev_st)

if self.include:

fname = frame.f_code.co_filename.replace('\\','/')

to_include = False

for incl in self.include:

if fname.startswith(incl):

to_include = True

break

if not to_include:

return self.trace_command

self.prev_st = traceback.format_stack(frame)

return self.trace_command

import sys

watcher = Watcher()

sys.settrace(watcher.trace_command)

testwatcher.py

from watcher import watcher

import numpy as np

import urllib2

class X(object):

def __init__(self, foo):

self.foo = foo

class Y(object):

def __init__(self, x):

self.xoo = x

def boom(self):

self.xoo.foo = "xoo foo!"

def main():

x = X(50)

watcher(x, 'foo', log_file='log.txt', include =['C:/Users/j/PycharmProjects/hello'])

x.foo = 500

x.goo = 300

y = Y(x)

y.boom()

arr = np.arange(0,100,0.1)

arr = arr**2

for i in xrange(3):

print 'a'

x.foo = i

for i in xrange(1):

i = i+1

main()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值