MCPcopy Create free account
hub / github.com/bslatkin/effectivepython / __init__

Method __init__

example_code/item_064.py:52–54  ·  view source on GitHub ↗
(self, column_name)

Source from the content-addressed store, hash-verified

50print("Example 1")
51class Field:
52 def __init__(self, column_name):
53 self.column_name = column_name
54 self.internal_name = "_" + self.column_name
55
56
57 print("Example 2")

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected