From 160c305d72aba483db5ff3bafc560280dda74267 Mon Sep 17 00:00:00 2001 From: Josverl Date: Wed, 13 Nov 2024 22:03:05 +0000 Subject: [PATCH] Update docstubs stubs for preview --- stubs/micropython-v1_25_0_preview-docstubs/modules.json | 2 +- stubs/micropython-v1_25_0_preview-docstubs/network.pyi | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/stubs/micropython-v1_25_0_preview-docstubs/modules.json b/stubs/micropython-v1_25_0_preview-docstubs/modules.json index 45242fc64..a383e0b7c 100644 --- a/stubs/micropython-v1_25_0_preview-docstubs/modules.json +++ b/stubs/micropython-v1_25_0_preview-docstubs/modules.json @@ -8,7 +8,7 @@ "firmware": "micropython-v1_25_0_preview", "nodename": "micropython", "version": "v1.25.0-preview", - "release": "v1.25.0-preview-25-g3844733d6", + "release": "v1.25.0-preview-33-g611d8f9ce", "sysname": "micropython" }, "stubber": { diff --git a/stubs/micropython-v1_25_0_preview-docstubs/network.pyi b/stubs/micropython-v1_25_0_preview-docstubs/network.pyi index 3104f0599..104814680 100644 --- a/stubs/micropython-v1_25_0_preview-docstubs/network.pyi +++ b/stubs/micropython-v1_25_0_preview-docstubs/network.pyi @@ -646,8 +646,11 @@ class PPP: def config(self, config_parameters) -> Incomplete: """ - Sets or gets parameters of the PPP interface. There are currently no parameter that - can be set or retrieved. + Sets or gets parameters of the PPP interface. The only parameter that can be + retrieved and set is the underlying stream, using:: + + stream = PPP.config("stream") + PPP.config(stream=stream) """ ...