Compare commits

..

2 Commits

Author SHA1 Message Date
Kanika Kapoor
cc61b8a967
Merge c048ec9faf4bfe02da004dce69471897933c3617 into 08cc247be97ba0bd566b175633ac9dbe21bbb599 2026-01-11 21:20:50 -05:00
BLUELOVETH
08cc247be9
Update differences.md 2026-01-10 23:57:49 +08:00

View File

@ -30,7 +30,7 @@ The easiest way to test a feature is to [try it on your browser](https://pocketp
## Different behaviors
1. positional and keyword arguments are strictly evaluated.
2. `int` does not derive from `bool`.
2. `bool` does not derive from `int`. They are independent types.
3. `int` is 64-bit.
4. Raw string cannot have boundary quotes in it, even escaped. See [#55](https://github.com/pocketpy/pocketpy/issues/55).
5. In a starred unpacked assignment, e.g. `a, b, *c = x`, the starred variable can only be presented in the last position. `a, *b, c = x` is not supported.