码迷,mamicode.com
首页 > 编程语言 > 详细

Python with

时间:2015-03-06 15:57:49      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:python

def pfname(fun):
	def wraper(*args,**kwargs):
		print fun.__name__
		return fun(*args,**kwargs)
	return wraper 

class ContextWith():
	@pfname
	def __enter__(self):
		return self
	@pfname
	def __exit__(self, exc_type, exc_value, exc_traceback):
		pass

	def Helloworld(self):
		print "Hello world"

with ContextWith() as ctx:
	ctx.Helloworld()



__enter__
Hello world
__exit__


Python with

标签:python

原文地址:http://blog.csdn.net/tanghuanan/article/details/44099921

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!