SYMBOL INDEX (58 symbols across 7 files) FILE: generic_relations/relations.py class RenamedMethods (line 11) | class RenamedMethods(RenameMethodsBase): class GenericRelatedField (line 18) | class GenericRelatedField(GenericSerializerMixin, serializers.Field, met... FILE: generic_relations/serializers.py class GenericSerializerMixin (line 12) | class GenericSerializerMixin(object): method __init__ (line 22) | def __init__(self, serializers, *args, **kwargs): method to_internal_value (line 35) | def to_internal_value(self, data): method to_representation (line 42) | def to_representation(self, instance): method get_serializer_for_instance (line 46) | def get_serializer_for_instance(self, instance): method get_deserializer_for_data (line 56) | def get_deserializer_for_data(self, value): class GenericModelSerializer (line 80) | class GenericModelSerializer(GenericSerializerMixin, serializers.Seriali... FILE: generic_relations/tests/migrations/0001_initial.py class Migration (line 9) | class Migration(migrations.Migration): FILE: generic_relations/tests/models.py class Tag (line 7) | class Tag(models.Model): method __unicode__ (line 16) | def __unicode__(self): class Detachable (line 20) | class Detachable(models.Model): class Bookmark (line 31) | class Bookmark(models.Model): method __unicode__ (line 38) | def __unicode__(self): class Note (line 42) | class Note(models.Model): method __unicode__ (line 49) | def __unicode__(self): class NoteProxy (line 53) | class NoteProxy(Note): class Meta (line 54) | class Meta: FILE: generic_relations/tests/test_relations.py function dummy_view (line 30) | def dummy_view(request, pk): class BookmarkSerializer (line 46) | class BookmarkSerializer(serializers.ModelSerializer): class Meta (line 47) | class Meta: class NoteSerializer (line 52) | class NoteSerializer(serializers.ModelSerializer): class Meta (line 53) | class Meta: class NoteProxySerializer (line 58) | class NoteProxySerializer(serializers.ModelSerializer): class Meta (line 61) | class Meta: method get_text (line 65) | def get_text(self, instance): class TestGenericRelatedFieldSerialization (line 70) | class TestGenericRelatedFieldSerialization(TestCase): method setUp (line 71) | def setUp(self): method test_relations_as_hyperlinks (line 82) | def test_relations_as_hyperlinks(self): method test_relations_as_nested (line 118) | def test_relations_as_nested(self): method test_mixed_serializers (line 153) | def test_mixed_serializers(self): method test_invalid_model (line 190) | def test_invalid_model(self): method test_relation_as_null (line 205) | def test_relation_as_null(self): method test_deprecated_method_overridden (line 236) | def test_deprecated_method_overridden(self): method test_deprecated_method_called (line 245) | def test_deprecated_method_called(self): method test_subclass_uses_registered_parent (line 260) | def test_subclass_uses_registered_parent(self): method test_subclass_uses_registered_subclass (line 271) | def test_subclass_uses_registered_subclass(self): class TestGenericRelatedFieldDeserialization (line 289) | class TestGenericRelatedFieldDeserialization(TestCase): method setUp (line 290) | def setUp(self): method test_hyperlink_serialization (line 297) | def test_hyperlink_serialization(self): method test_configuration_error (line 326) | def test_configuration_error(self): method test_not_registered_view_name (line 351) | def test_not_registered_view_name(self): method test_invalid_url (line 372) | def test_invalid_url(self): method test_serializer_save (line 398) | def test_serializer_save(self): method test_nullable_relation_serializer_save (line 425) | def test_nullable_relation_serializer_save(self): method test_deprecated_method_overridden (line 451) | def test_deprecated_method_overridden(self): method test_deprecated_method_called (line 460) | def test_deprecated_method_called(self): class TestGenericRelatedField (line 473) | class TestGenericRelatedField(TestCase): method test_multiple_declaration (line 474) | def test_multiple_declaration(self): FILE: generic_relations/tests/test_serializers.py class TestGenericModelSerializer (line 13) | class TestGenericModelSerializer(TestCase): method setUp (line 14) | def setUp(self): method test_serialize (line 28) | def test_serialize(self): method test_deserialize (line 38) | def test_deserialize(self): method test_serialize_list (line 48) | def test_serialize_list(self): method test_deserialize_list (line 60) | def test_deserialize_list(self): method test_is_valid_raise_exception (line 75) | def test_is_valid_raise_exception(self): FILE: setup.py function read_relative_file (line 8) | def read_relative_file(filename):