index
:
suspect-devices/circuitpython
1.x
2.x
3.x
4.0.x
4.1.x
4.x
5.0.x
5.1.x
5.3.x
6.0.x
6.1.x
6.2.x
audiocore-rawsample-sinewave
azure
azure-pipelines
cross
dm-mixer
dynamic-native-modules
encoding
esp-extra-scripts
fix_typo_spanish
iabdalkader-cc3k-update
jepler-try-ubuntu-20.04
main
master
parse-bytecode
reentrant-gc
stable
travis-clang
travis-esp8266
travis-stackless
travis-testing
type_hints
CircuitPython - a Python implementation for teaching coding with microcontrollers
feurig
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
objint.h
Age
Commit message (
Expand
)
Author
2020-09-06
core: add int.bit_length() when MICROPY_CYPTHON_COMPAT is enabled
Jeff Epler
2020-07-06
Add license to some obvious files.
Diego Elio Pettenò
2019-05-12
Handle truth values; speed up smallint checks
Dan Halbert
2019-05-09
Add overflow checks for int to bytes conversions
Matt Wozniski
2017-09-18
py/modbuiltins: Implement abs() by dispatching to MP_UNARY_OP_ABS.
Paul Sokolovsky
2017-08-29
all: Convert mp_uint_t to mp_unary_op_t/mp_binary_op_t where appropriate
Damien George
2017-07-31
all: Use the name MicroPython consistently in comments
Alexander Steffen
2017-07-18
all: Unify header guard usage.
Alexander Steffen
2017-04-04
py/objint: Consolidate mp_obj_new_int_from_float to one implementation.
Damien George
2017-02-02
py: Added optimised support for 3-argument calls to builtin.pow()
Nicko van Someren
2017-01-21
py/objint: from_bytes(): Implement "byteorder" param and arbitrary precision.
Paul Sokolovsky
2016-12-21
py/objint: Rename mp_obj_int_as_float to mp_obj_int_as_float_impl.
Damien George
2016-10-11
py/objint: Use size_t for arguments that measure bytes/sizes.
Damien George
2016-10-11
py: Factor duplicated function to calculate size of formatted int.
Damien George
2016-01-07
py: Change mp_obj_int_is_positive to more general mp_obj_int_sign.
Damien George
2015-04-25
py: Support conversion of bignum to bytes.
Damien George
2015-04-16
py: Overhaul and simplify printf/pfenv mechanism.
Damien George
2015-03-14
py: Fix builtin abs so it works for bools and bignum.
Damien George
2015-01-24
py: Add float-to-int classification function
David Steinberg
2015-01-01
py: Move to guarded includes, everywhere in py/ core.
Damien George
2014-10-03
py: Convert [u]int to mp_[u]int_t where appropriate.
Damien George
2014-09-15
py: Move definition of mp_sys_exit to core.
Damien George
2014-08-30
Change some parts of the core API to use mp_uint_t instead of uint/int.
Damien George
2014-07-24
py: Make long ints hashable.
Damien George
2014-05-17
py: More const usage.
Paul Sokolovsky
2014-05-03
Add license header to (almost) all files.
Damien George
2014-04-08
py: Make it so that printing a small int does not allocate heap memory.
Damien George
2014-04-07
Add string formatting support for longlong and mpz.
Dave Hylands
2014-04-04
py: Make False and True act like 0 and 1 for integer arithmetic.
Damien George
2014-02-22
Add arbitrary precision integer support.
Damien George
2014-02-15
py: Revent some long int configuration.
Damien George
2014-02-15
Small change to configuration of long int.
Damien George
2014-02-14
ffi: Implement ffivar.get()/set() methods.
Paul Sokolovsky
2014-01-27
long int: Implement more operations.
Paul Sokolovsky
2014-01-15
type->print(): Distinguish str() and repr() variety by passing extra param.
Paul Sokolovsky
2014-01-13
Move mp_obj_int_t definition to objint.h, to reuse in long int impls.
Paul Sokolovsky