(namescope)
| 272 | |
| 273 | @staticmethod |
| 274 | def _NormalizeNamescope(namescope): |
| 275 | if namescope is None: |
| 276 | return scope.CurrentNameScope() |
| 277 | elif namescope == '' or namescope.endswith(scope._NAMESCOPE_SEPARATOR): |
| 278 | return namescope |
| 279 | else: |
| 280 | return namescope + scope._NAMESCOPE_SEPARATOR |
| 281 | |
| 282 | def GetParams(self, namescope=None, top_scope=False): |
| 283 | ''' |
no outgoing calls
no test coverage detected