()
| 1389 | |
| 1390 | |
| 1391 | def _full_name_scope(): |
| 1392 | global _name_scope |
| 1393 | scope = _name_scope |
| 1394 | name = "" |
| 1395 | while scope: |
| 1396 | name = scope.name() + "/" + name |
| 1397 | scope = scope.parent() |
| 1398 | return name |
| 1399 | |
| 1400 | |
| 1401 | def generate_control_dev_var_name(): |