Returns the manual keyspace, if set, otherwise the default keyspace
(cls)
| 509 | |
| 510 | @classmethod |
| 511 | def _get_keyspace(cls): |
| 512 | """ |
| 513 | Returns the manual keyspace, if set, otherwise the default keyspace |
| 514 | """ |
| 515 | return cls.__keyspace__ or DEFAULT_KEYSPACE |
| 516 | |
| 517 | @classmethod |
| 518 | def _get_column(cls, name): |
no outgoing calls