(self, path)
| 1247 | return None |
| 1248 | |
| 1249 | def GetChildByPath(self, path): |
| 1250 | if not path: |
| 1251 | return None |
| 1252 | |
| 1253 | if path in self._children_by_path: |
| 1254 | return self._children_by_path[path] |
| 1255 | |
| 1256 | return None |
| 1257 | |
| 1258 | def GetChildByRemoteObject(self, remote_object): |
| 1259 | # This method is a little bit esoteric. Given a remote_object, which |