summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2008-08-19 17:47:13 (GMT)
committerThomas Heller <theller@ctypes.org>2008-08-19 17:47:13 (GMT)
commit66260995205ccdabbe4b8e4b2146634e7c0b90d8 (patch)
treeb8301761ad419f3924825f5ef13b284638e6fa14 /Modules
parentd068ad58791b0f3e51d2723a94e166fe655d9d65 (diff)
downloadcpython-66260995205ccdabbe4b8e4b2146634e7c0b90d8.zip
cpython-66260995205ccdabbe4b8e4b2146634e7c0b90d8.tar.gz
cpython-66260995205ccdabbe4b8e4b2146634e7c0b90d8.tar.bz2
Fix strange character in the docstring.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/mmapmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c
index 08b5a96..a03957c 100644
--- a/Modules/mmapmodule.c
+++ b/Modules/mmapmodule.c
@@ -992,7 +992,7 @@ and returns a mmap object. If length is 0, the maximum length of the map\n\
will be the current size of the file when mmap is called.\n\
flags specifies the nature of the mapping. MAP_PRIVATE creates a\n\
private copy-on-write mapping, so changes to the contents of the mmap\n\
-object will be private to this process, and MAP_SHARED`creates a mapping\n\
+object will be private to this process, and MAP_SHARED creates a mapping\n\
that's shared with all other processes mapping the same areas of the file.\n\
The default value is MAP_SHARED.\n\
\n\