(namescope)
| 78 | |
| 79 | |
| 80 | def _normalize_namescope(namescope): |
| 81 | if namescope and namescope[-1] != scope._NAMESCOPE_SEPARATOR: |
| 82 | return namescope + scope._NAMESCOPE_SEPARATOR |
| 83 | else: |
| 84 | return namescope |
| 85 | |
| 86 | |
| 87 | @contextlib.contextmanager |
no outgoing calls
no test coverage detected
searching dependent graphs…