]> granicus.if.org Git - python/commitdiff
Make clear in the docstring that "std" applies to both size and alignment,
authorTim Peters <tim.peters@gmail.com>
Mon, 11 Jun 2001 16:45:33 +0000 (16:45 +0000)
committerTim Peters <tim.peters@gmail.com>
Mon, 11 Jun 2001 16:45:33 +0000 (16:45 +0000)
not just to alignment.  Spotted by Guido.

Bugfix candidate.

Modules/structmodule.c

index a168b9fc0aa5ca3af8ed2547e56c1243fc498543..b06b828d3d5decd55ab93c3a5b0524f3948ca1f5 100644 (file)
@@ -9,12 +9,12 @@ Functions to convert between Python values and C structs.\n\
 Python strings are used to hold the data representing the C struct\n\
 and also as format strings to describe the layout of data in the C struct.\n\
 \n\
-The optional first format char indicates byte ordering and alignment:\n\
- @: native w/native alignment(default)\n\
- =: native w/standard alignment\n\
- <: little-endian, std. alignment\n\
- >: big-endian, std. alignment\n\
- !: network, std (same as >)\n\
+The optional first format char indicates byte order, size and alignment:\n\
+ @: native order, size & alignment (default)\n\
+ =: native order, std. size & alignment\n\
+ <: little-endian, std. size & alignment\n\
+ >: big-endian, std. size & alignment\n\
+ !: same as >\n\
 \n\
 The remaining chars indicate types of args and must match exactly;\n\
 these can be preceded by a decimal repeat count:\n\