From f8e7ebabaed08abc7e1c3189e5d3106d9568102d Mon Sep 17 00:00:00 2001 From: Peter Hinch Date: Tue, 28 Sep 2021 07:16:12 +0100 Subject: [PATCH] SERIALISATION.md Fix broken link. --- SERIALISATION.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SERIALISATION.md b/SERIALISATION.md index ebc2f76..8cdecec 100644 --- a/SERIALISATION.md +++ b/SERIALISATION.md @@ -104,7 +104,7 @@ be converted to legal JSON strings; this is a limitation of the The advantage of `pickle` is that it will accept any Python object except for instances of user defined classes. The extremely simple source may be found in -[the official library](https://github.com/micropython/micropython-lib/tree/master/pickle). +[the official library](https://github.com/micropython/micropython-lib/tree/master/python-stdlib/pickle). The strings produced are incompatible with CPython's `pickle`, but can be decoded in CPython by using the MicroPython decoder. There is a [bug](https://github.com/micropython/micropython/issues/2280) in the