(self)
| 313 | return sum(self.itervalues()) |
| 314 | |
| 315 | def _validate(self): |
| 316 | super(WVertex, self)._validate() #Vertex._validate(self) |
| 317 | for weight in self.itervalues(): |
| 318 | assert isinstance(weight, NumberType) |
| 319 | |
| 320 | |
| 321 | class Vertex(VertexCommon): |
nothing calls this directly
no test coverage detected