File: parameters.py

package info (click to toggle)
pyro 1%3A3.14-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,048 kB
  • ctags: 1,988
  • sloc: python: 11,194; xml: 128; sh: 52; makefile: 28
file content (6 lines) | stat: -rw-r--r-- 132 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6

class Parameter(object):
	def __init__(self, name):
		self.name=name
	def method(self):
		print "I am parameter object ",self.name