[issue32466] Fix missing test coverage for fractions.Fraction.__new__

2021-04-11 Thread Mark Dickinson
Mark Dickinson added the comment: Thanks, Sergey! Agreed that this can be closed. -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker

[issue32466] Fix missing test coverage for fractions.Fraction.__new__

2021-04-10 Thread Sergey B Kirpichev
Sergey B Kirpichev added the comment: Mark, I think the Lib/fractions.py now is covered by tests in the test_fractions.py. $ ./python -m venv ~/venv/cpython $ . ~/venv/cpython/bin/activate $ pip install coverage Collecting coverage Using cached coverage-5.5-cp310-cp310-manylinux1_x86_64.whl

[issue32466] Fix missing test coverage for fractions.Fraction.__new__

2018-01-01 Thread Mark Dickinson
Mark Dickinson added the comment: I've retitled the issue to avoid confusion, since we're no longer proposing removing the _gcd function. -- title: Remove fractions._gcd() -> Fix missing test coverage for fractions.Fraction.__new__ ___ Python track