I can't figure out what is going on. If you Open Maya 2016 create four nurbsCircles
and run this script you've got this:
// MEL
makeIdentity -apply true -t 1 -r 1 -s 1 -n 0 -pn 1 nurbsCircle1 nurbsCircle2 nurbsCircle3 nurbsCircle4 ;
parent -r -s nurbsCircle2|nurbsCircleShape2 nurbsCircle1 ;
parent -r -s nurbsCircle3|nurbsCircleShape3 nurbsCircle1 ;
parent -r -s nurbsCircle4|nurbsCircleShape4 nurbsCircle1 ;
# Python
import maya.cmds as mc
mc.makeIdentity( mc.ls( sl = 1 ),
apply = True,
t = 1, r = 1, s = 1, n = 0 )
mc.parent( 'nurbsCircle3|nurbsCircleShape3',
'nurbsCircle2|nurbsCircleShape2',
'nurbsCircle4|nurbsCircleShape4',
'nurbsCircle1',s = 1,r = 1 )