This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xdegaye
Recipients Alex.Willmer, python-dev, skrah, xdegaye, yan12125
Date 2017-02-04.16:42:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1486226542.11.0.00737300896341.issue29439@psf.upfronthosting.co.za>
In-reply-to
Content
> This wasn't fixed because _decimal didn't build before issue26846 lands.

This is misleading, the problem went unnoticed when not linking with '-lm' because:
* The _decimal extension module builds without any warning.
* test_decimal does not fail.

One way to demonstrate the problem in the interactive interpreter on Android:
>>> import decimal
>>> import _decimal
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: dlopen failed: cannot locate symbol "log10" referenced by "_decimal.cpython-37dm.so"...
History
Date User Action Args
2017-02-04 16:42:22xdegayesetrecipients: + xdegaye, skrah, python-dev, Alex.Willmer, yan12125
2017-02-04 16:42:22xdegayesetmessageid: <1486226542.11.0.00737300896341.issue29439@psf.upfronthosting.co.za>
2017-02-04 16:42:22xdegayelinkissue29439 messages
2017-02-04 16:42:21xdegayecreate