( sza2king | 2014. 05. 04., v – 19:41 )

Azt hittem ez csak docstring.

Sajnos ez viszont pl. nem mukodik vele:


#!/usr/bin/python

class Test:
	def test1(self):
		print "test1"
'''
	def test2(self):
		print 1
'''
	def test3(self):
		print "test3"

t = Test()

t.test1()
t.test3()

/sza2