[Python-checkins] r57106 - python/branches/alex-py3k/Modules/_bytesiomodule.c python/branches/alex-py3k/Modules/_stringiomodule.c
alexandre.vassalotti
python-checkins at python.org
Fri Aug 17 00:05:14 CEST 2007
Author: alexandre.vassalotti
Date: Fri Aug 17 00:05:10 2007
New Revision: 57106
Modified:
python/branches/alex-py3k/Modules/_bytesiomodule.c
python/branches/alex-py3k/Modules/_stringiomodule.c
Log:
Add another space after a period in the docstring of close().
Modified: python/branches/alex-py3k/Modules/_bytesiomodule.c
==============================================================================
--- python/branches/alex-py3k/Modules/_bytesiomodule.c (original)
+++ python/branches/alex-py3k/Modules/_bytesiomodule.c Fri Aug 17 00:05:10 2007
@@ -501,7 +501,7 @@
"Returns the new size.");
PyDoc_STRVAR(BytesIO_close_doc,
-"close() -> None. Does nothing.");
+"close() -> None. Does nothing.");
PyDoc_STRVAR(BytesIO_seek_doc,
"seek(pos, whence=0) -> int. Change stream position.\n"
Modified: python/branches/alex-py3k/Modules/_stringiomodule.c
==============================================================================
--- python/branches/alex-py3k/Modules/_stringiomodule.c (original)
+++ python/branches/alex-py3k/Modules/_stringiomodule.c Fri Aug 17 00:05:10 2007
@@ -463,7 +463,7 @@
"Returns the new size.");
PyDoc_STRVAR(StringIO_close_doc,
-"close() -> None. Does nothing.");
+"close() -> None. Does nothing.");
PyDoc_STRVAR(StringIO_seek_doc,
"seek(pos, whence=0) -> int. Change stream position.\n"
More information about the Python-checkins
mailing list