diff --git a/Differences.md b/Differences.md index 32af9c5..c1c823a 100644 --- a/Differences.md +++ b/Differences.md @@ -38,4 +38,5 @@ Known issues are essentially bugs, misfeatures, and omissions considered such, a 1. Container slice assignment/deletion is only partially implemented. [#509](https://github.com/micropython/micropython/issues/509) 1. 3-argument slicing is only partially implemented. 1. Keyword and keyword-only arguments need more work [#466](https://github.com/micropython/micropython/issues/466), [#524](//github.com/micropython/micropython/issues/524). -1. Only basic support for ``__new__`` method is available [#606](//github.com/micropython/micropython/issues/606), [#622](//github.com/micropython/micropython/issues/622). \ No newline at end of file +1. Only basic support for ``__new__`` method is available [#606](//github.com/micropython/micropython/issues/606), [#622](//github.com/micropython/micropython/issues/622). +1. Bitwise operations on long ints are only partially implemented (x & 0xffffffff idiom for casting signed 32-bit value to unsigned works).