@@ -18,26 +18,26 @@ Functions
1818
1919.. function :: calcsize(fmt)
2020
21- Return the number of bytes needed to store the given ` fmt ` .
21+ Return the number of bytes needed to store the given * fmt * .
2222
2323.. function :: pack(fmt, v1, v2, ...)
2424
25- Pack the values ` v1 `, ` v2 ` , ... according to the format string ` fmt ` .
25+ Pack the values * v1 *, * v2 * , ... according to the format string * fmt * .
2626 The return value is a bytes object encoding the values.
2727
2828.. function :: pack_into(fmt, buffer, offset, v1, v2, ...)
2929
30- Pack the values ` v1 `, ` v2 ` , ... according to the format string ` fmt `
31- into a ` buffer ` starting at ` offset `. ` offset ` may be negative to count
32- from the end of ` buffer ` .
30+ Pack the values * v1 *, * v2 * , ... according to the format string * fmt *
31+ into a * buffer * starting at * offset *. * offset * may be negative to count
32+ from the end of * buffer * .
3333
3434.. function :: unpack(fmt, data)
3535
36- Unpack from the ` data ` according to the format string ` fmt ` .
36+ Unpack from the * data * according to the format string * fmt * .
3737 The return value is a tuple of the unpacked values.
3838
3939.. function :: unpack_from(fmt, data, offset=0)
4040
41- Unpack from the ` data ` starting at ` offset ` according to the format string
42- ` fmt `. ` offset ` may be negative to count from the end of ` buffer ` . The return
41+ Unpack from the * data * starting at * offset * according to the format string
42+ * fmt *. * offset * may be negative to count from the end of * buffer * . The return
4343 value is a tuple of the unpacked values.
0 commit comments