aleaxit / gmpy

General Multi-Precision arithmetic for Python 2.6+/3+ (GMP, MPIR, MPFR, MPC)
https://gmpy2.readthedocs.io/en/latest/
GNU Lesser General Public License v3.0
518 stars 86 forks source link

Minor changes for docs #392

Closed skirpichev closed 1 year ago

skirpichev commented 1 year ago
codecov-commenter commented 1 year ago

Codecov Report

Merging #392 (98245d3) into master (f105881) will increase coverage by 0.00%. The diff coverage is 100.00%.

:mega: This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more

@@           Coverage Diff           @@
##           master     #392   +/-   ##
=======================================
  Coverage   82.35%   82.35%           
=======================================
  Files          49       49           
  Lines       11552    11553    +1     
  Branches     2146     2147    +1     
=======================================
+ Hits         9514     9515    +1     
  Misses       2038     2038           
Impacted Files Coverage Δ
src/gmpy2_binary.c 75.60% <ø> (ø)
src/gmpy2_context.c 61.08% <ø> (ø)
src/gmpy2_divmod.c 98.94% <ø> (ø)
src/gmpy2_format.c 88.00% <ø> (ø)
src/gmpy2_mod.c 99.36% <ø> (ø)
src/gmpy2_mpfr_misc.c 84.79% <ø> (ø)
src/gmpy2_mpq_misc.c 81.43% <ø> (ø)
src/gmpy2_mpz_bitops.c 100.00% <ø> (ø)
src/gmpy2_mpz_misc.c 100.00% <ø> (ø)
src/gmpy2_muldiv_2exp.c 87.50% <ø> (ø)
... and 7 more

:mega: We’re building smart automated test selection to slash your CI/CD build times. Learn more

casevh commented 1 year ago

It looks like I did something wrong. Can you help me get it fixed?

skirpichev commented 1 year ago

Sure, I'll take a look today.

skirpichev commented 1 year ago

@casevh, these conflicts are (at least most of them) due to merging you pr #388 (which in turn reverts my pr https://github.com/aleaxit/gmpy/pull/386).

I would guess it was a mistake. In this case, @casevh, please merge first #393 (a copy of reverted pr), then this pr (if conflicts disappear).

skirpichev commented 1 year ago

Ok, @casevh, now conflicts are solved.

casevh commented 1 year ago

Thanks again for all the assistance.

Case