Skip to content

Commit 46855aa

Browse files
committed
ZstdDict: fix docstrings
1 parent fe0e921 commit 46855aa

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Lib/compression/zstd/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
'get_frame_info',
1212
'Strategy',
1313
'train_dict',
14+
'zstd_version_info',
1415

1516
# compression.zstd._zstdfile
1617
'open',
@@ -19,7 +20,6 @@
1920
# _zstd
2021
'get_frame_size',
2122
'zstd_version',
22-
'zstd_version_info',
2323
'ZstdCompressor',
2424
'ZstdDecompressor',
2525
'ZstdDict',

Modules/_zstd/clinic/zstddict.c.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Modules/_zstd/zstddict.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ ZstdDict_dealloc(PyObject *ob)
120120

121121
PyDoc_STRVAR(ZstdDict_dictid_doc,
122122
"the Zstandard dictionary, an int between 0 and 2**32.\n\n"
123-
"A non-zero value represents an ordinary Zstandard dictionary, "
123+
"A non-zero value represents an ordinary Zstandard dictionary,\n"
124124
"conforming to the standardised format.\n\n"
125-
"The special value '0' means a 'raw content' dictionary,"
125+
"The special value '0' means a 'raw content' dictionary,\n"
126126
"without any restrictions on format or content.");
127127

128128
static PyObject *

0 commit comments

Comments
 (0)