MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / Base

Class Base

test/orm/test_collection.py:2793–2804  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2791 def test_name_setup(self):
2792
2793 class Base:
2794 @collection.iterator
2795 def base_iterate(self, x):
2796 return "base_iterate"
2797
2798 @collection.appender
2799 def base_append(self, x):
2800 return "base_append"
2801
2802 @collection.remover
2803 def base_remove(self, x):
2804 return "base_remove"
2805
2806 from sqlalchemy.orm.collections import _instrument_class
2807

Callers 1

test_name_setupMethod · 0.70

Calls

no outgoing calls

Tested by 1

test_name_setupMethod · 0.56