diff options
author | Steve Dower <steve.dower@python.org> | 2019-07-14 10:09:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-14 10:09:45 +0200 |
commit | 68c74d05c1fdaf59d8711431884af975ac2ac5f8 (patch) | |
tree | 44ec0f3f29d613f3ae66a8f301e1eef5c098f849 /Doc | |
parent | bpo-37571: Add 'b' to prevent the TypeError exception. (GH-14721) (diff) | |
download | cpython-68c74d05c1fdaf59d8711431884af975ac2ac5f8.tar.gz cpython-68c74d05c1fdaf59d8711431884af975ac2ac5f8.tar.bz2 cpython-68c74d05c1fdaf59d8711431884af975ac2ac5f8.zip |
bpo-37571: Remove extra space in ctypes docs (GH14764)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ctypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index 5507cc6aad1..02a5500e811 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -1183,7 +1183,7 @@ Another example that may behave different from what one would expect is this:: b'abc def ghi' >>> s.value is s.value False - >>> + >>> .. note:: |