aboutsummaryrefslogtreecommitdiff
path: root/py/mpz.c
AgeCommit message (Expand)Author
2015-01-16py, unix: Allow to compile with -Wsign-compare.Damien George
2015-01-09py: Fix handling of "0" mpz in some functions.Damien George
2015-01-02py: Raise exception if trying to convert inf/nan to int.Damien George
2015-01-02py: Fix float to int conversion for large exponents.David Steinberg
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-12-31py: Fix rshift and not of zero/one edge cases in mpz.Damien George
2014-10-30mpz: Fix 64bit msvc buildstijn
2014-10-03py: Convert [u]int to mp_[u]int_t where appropriate.Damien George
2014-09-10py: Enable struct/binary-helper to parse q and Q sized ints.Damien George
2014-09-06py: Make mpz able to use 16 bits per digit; and 32 on 64-bit arch.Damien George
2014-09-05py: Convert (u)int to mp_(u)int_t in mpz, and remove unused function.Damien George
2014-08-30py: Save about 200 bytes of ROM by using smaller type for static table.Damien George
2014-08-07py: Fix bug in mpn_shl (multi-prec int shift left).Damien George
2014-07-31py: Improve handling of long-int overflow.Damien George
2014-07-24py: Make long ints hashable.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-06-21py: Include mpconfig.h before all other includes.Paul Sokolovsky
2014-06-01Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George
2014-05-29py: Implement bignum '&' with negatives on lhs and rhs.Damien George
2014-05-13py: Improve mpz_and function.Damien George
2014-05-12py: Fix bug in mpz_and function.Damien George
2014-05-08Windows MSVC portstijn
2014-05-03Add license header to (almost) all files.Damien George
2014-04-08py: Add comment mpz function, and free memory used for string printing.Damien George
2014-04-07Add string formatting support for longlong and mpz.Dave Hylands
2014-04-04py: Handle small int power overflow correctly.Damien George
2014-04-03py: More robust int conversion and overflow checking.Damien George
2014-03-23objint_mpz: Quick&dirty implementation of bitwise operations.Paul Sokolovsky
2014-03-12py: Fix some bugs in mpz; add mpz_from_ll and mpz_set_from_ll.Damien George
2014-03-08py: Wrap mpz float functions in MICROPY_ENABLE_FLOAT.Damien George
2014-03-01py: Implement bit-shift and not operations for mpz.Damien George
2014-02-26py: Start to implement shl/shr for mpz. Fix return void.Damien George
2014-02-24py: Fix mpn_sub, was increasing wrong source pointer.Damien George
2014-02-22Add arbitrary precision integer support.Damien George