summaryrefslogtreecommitdiffstats
path: root/Doc/faq
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-10-06 10:38:58 (GMT)
committerGeorg Brandl <georg@python.org>2010-10-06 10:38:58 (GMT)
commitd098c3d94cd9bc74fa4d6f3a2752965e12860a03 (patch)
treeb62f15f6b3e28c65c8c11c0949f100cc70db5181 /Doc/faq
parentc755e90288ba6cdb38f0fbcce297fd7fbe35cfe6 (diff)
downloadcpython-d098c3d94cd9bc74fa4d6f3a2752965e12860a03.zip
cpython-d098c3d94cd9bc74fa4d6f3a2752965e12860a03.tar.gz
cpython-d098c3d94cd9bc74fa4d6f3a2752965e12860a03.tar.bz2
Merged revisions 85274 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k ........ r85274 | georg.brandl | 2010-10-06 12:26:05 +0200 (Mi, 06 Okt 2010) | 1 line Fix errors found by "make suspicious". ........
Diffstat (limited to 'Doc/faq')
-rw-r--r--Doc/faq/library.rst2
-rw-r--r--Doc/faq/windows.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst
index 2d35b11..180bd39 100644
--- a/Doc/faq/library.rst
+++ b/Doc/faq/library.rst
@@ -460,7 +460,7 @@ To rename a file, use ``os.rename(old_path, new_path)``.
To truncate a file, open it using ``f = open(filename, "rb+")``, and use
``f.truncate(offset)``; offset defaults to the current seek position. There's
-also ```os.ftruncate(fd, offset)`` for files opened with :func:`os.open`, where
+also ``os.ftruncate(fd, offset)`` for files opened with :func:`os.open`, where
``fd`` is the file descriptor (a small integer).
The :mod:`shutil` module also contains a number of functions to work on files
diff --git a/Doc/faq/windows.rst b/Doc/faq/windows.rst
index 5a5b7ed..8342657 100644
--- a/Doc/faq/windows.rst
+++ b/Doc/faq/windows.rst
@@ -593,7 +593,7 @@ Warning about CTL3D32 version from installer
The Python installer issues a warning like this::
- This version uses ``CTL3D32.DLL`` which is not the correct version.
+ This version uses CTL3D32.DLL which is not the correct version.
This version is used for windows NT applications only.
Tim Peters: