Last login: Mon Mar 25 11:24:48 on ttys000
$ python
Python 2.7.10 (default, Aug 17 2018, 19:45:58)
[GCC 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.0.42)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import apsw
>>> apsw.apswversion()
'3.27.2-r1'
>>> apsw.sqlitelibversion()
'3.28.0'
>>> cx=apsw.Connection('test.db')
>>> cx.loadextension('testobject')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'apsw.Connection' object has no attribute 'loadextension'
>>>
As a workaround I forced the desired setting in setup.py %s/load_extension=False/load_extension=True/