Issue #5341: Fix a variety of spelling errors.

This commit is contained in:
Mark Dickinson 2009-02-21 20:27:01 +00:00
parent a12a86e956
commit 3e4caeb3bf
56 changed files with 93 additions and 93 deletions

View file

@ -21,12 +21,12 @@ operating system::
>>> os.chdir('/server/accesslogs')
Be sure to use the ``import os`` style instead of ``from os import *``. This
will keep :func:`os.open` from shadowing the builtin :func:`open` function which
will keep :func:`os.open` from shadowing the built-in :func:`open` function which
operates much differently.
.. index:: builtin: help
The builtin :func:`dir` and :func:`help` functions are useful as interactive
The built-in :func:`dir` and :func:`help` functions are useful as interactive
aids for working with large modules like :mod:`os`::
>>> import os