[Python-checkins] r65859 - python/trunk/Modules/mmapmodule.c
thomas.heller
python-checkins at python.org
Tue Aug 19 19:47:13 CEST 2008
Author: thomas.heller
Date: Tue Aug 19 19:47:13 2008
New Revision: 65859
Log:
Fix strange character in the docstring.
Modified:
python/trunk/Modules/mmapmodule.c
Modified: python/trunk/Modules/mmapmodule.c
==============================================================================
--- python/trunk/Modules/mmapmodule.c (original)
+++ python/trunk/Modules/mmapmodule.c Tue Aug 19 19:47:13 2008
@@ -992,7 +992,7 @@
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\
More information about the Python-checkins
mailing list