[issue30055] Missed testcleanup in decimal.rst

2017-04-13 Thread Stefan Krah
Stefan Krah added the comment: Ok great, maybe I'll take a look. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue30055] Missed testcleanup in decimal.rst

2017-04-13 Thread Marco Buttu
Marco Buttu added the comment: We are not executing the doctests on Travis CI, but I executed them locally. That's why I realized there was a missed testcleanup. The issue27200 wants to fix all doctests, and I actually completed the job, but three PRs are still opened, and I am waiting for r

[issue30055] Missed testcleanup in decimal.rst

2017-04-13 Thread Stefan Krah
Stefan Krah added the comment: Thanks, looks good. (I hope GitHub runs the doctests at Travis CI, locally most of them failed so I didn't bother to run the tests for this one.) -- assignee: docs@python -> skrah resolution: -> fixed stage: -> resolved status: open -> closed _

[issue30055] Missed testcleanup in decimal.rst

2017-04-13 Thread Stefan Krah
Stefan Krah added the comment: New changeset 2c0b5c664ba7d36dc09788d3778d5b33e3fa1bd0 by Stefan Krah (Marco Buttu) in branch 'master': bpo-30055: add testcleanup to leave a fresh context (#1094) https://github.com/python/cpython/commit/2c0b5c664ba7d36dc09788d3778d5b33e3fa1bd0 --

[issue30055] Missed testcleanup in decimal.rst

2017-04-12 Thread Marco Buttu
Changes by Marco Buttu : -- pull_requests: +1236 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue30055] Missed testcleanup in decimal.rst

2017-04-12 Thread Marco Buttu
New submission from Marco Buttu: The testsetup in Doc/library/decimal.rst is not enough for isolating the tests in respect to the other rst files. Currently we have the following testsetup, without a testcleanup: .. testsetup:: * import decimal import math from decimal import *