From 0b2672c86b6b9b4fc848f4e4e6f810e3e81a9ce8 Mon Sep 17 00:00:00 2001 From: "Francis.Qin" Date: Mon, 27 Feb 2023 14:57:11 +0800 Subject: [PATCH 1/2] wiki check --- .../ustruct.md" | 8 -------- 1 file changed, 8 deletions(-) diff --git "a/docs/API_reference/zh/QuecPython\346\240\207\345\207\206\345\272\223/ustruct.md" "b/docs/API_reference/zh/QuecPython\346\240\207\345\207\206\345\272\223/ustruct.md" index b3ef869d..909d0307 100644 --- "a/docs/API_reference/zh/QuecPython\346\240\207\345\207\206\345\272\223/ustruct.md" +++ "b/docs/API_reference/zh/QuecPython\346\240\207\345\207\206\345\272\223/ustruct.md" @@ -28,11 +28,8 @@ | Format | C Type | Python type | Standard size | | ------ | -------------------- | ----------- | ------------- | -| `x` | `pad byte` | no value | | -| `c` | `char` | bytes of length 1 | 1 | | `b` | `signed char` | integer | 1 | | `B` | `unsigned char` | integer | 1 | -| `?` | `_Bool` | bool | 1 | | `h` | `short` | integer | 2 | | `H` | `unsigned short` | integer | 2 | | `i` | `int` | integer | 4 | @@ -41,13 +38,8 @@ | `L` | `unsigned long` | integer | 4 | | `q` | `long long` | integer | 8 | | `Q` | `unsigned long long` | integer | 8 | -| `n` | `ssize_t` | integer | | -| `N` | `size_t` | integer | | -| `e` | | float | 2 | | `f` | `float` | float | 4 | | `d` | `double` | float | 8 | -| `s` | `char[]` | bytes | | -| `p` | `char[]` | bytes | | | `P` | `void *` | integer | 4 | -- Gitee From bb6008789f3fe56cd6e4448b1b8bdf3785337a57 Mon Sep 17 00:00:00 2001 From: "Francis.Qin" Date: Mon, 27 Feb 2023 15:04:01 +0800 Subject: [PATCH 2/2] wiki check --- .../QuecPython\346\240\207\345\207\206\345\272\223/ustruct.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/docs/API_reference/zh/QuecPython\346\240\207\345\207\206\345\272\223/ustruct.md" "b/docs/API_reference/zh/QuecPython\346\240\207\345\207\206\345\272\223/ustruct.md" index 909d0307..41546224 100644 --- "a/docs/API_reference/zh/QuecPython\346\240\207\345\207\206\345\272\223/ustruct.md" +++ "b/docs/API_reference/zh/QuecPython\346\240\207\345\207\206\345\272\223/ustruct.md" @@ -1,7 +1,7 @@ # ustruct - 打包和解压原始数据类型 -模块功能:`ustruct`模块实现相应CPython模块的子集。更多信息请参阅阅CPython文档:[struct](https://docs.python.org/3/library/struct.html) +模块功能:`ustruct`模块实现相应CPython模块的子集。更多信息请参阅阅CPython文档:[struct](https://docs.python.org/3.5/library/struct.html#module-struct) ## 格式字符串 -- Gitee