I don't believe you can call the constructor of a parent (since that probably already happened before the child was created). However you can call your your own function in the parent by using the dot . operator.
Parent:
func init_data(arg):
# do something with arg
Child:
func _init():
var arg = 0
.init_data(arg)