diff options
author | Georg Brandl <georg@python.org> | 2007-03-13 07:23:16 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-03-13 07:23:16 (GMT) |
commit | 3bb156722e97c31260b4da6c22594a7698e5cf04 (patch) | |
tree | 22171b075573102b4bd976d79efb3ec8776c148c /Python | |
parent | 75c7c80ee5838a967abf815c08b60ef1eadc42d1 (diff) | |
download | cpython-3bb156722e97c31260b4da6c22594a7698e5cf04.zip cpython-3bb156722e97c31260b4da6c22594a7698e5cf04.tar.gz cpython-3bb156722e97c31260b4da6c22594a7698e5cf04.tar.bz2 |
Typo and grammar fixes.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index eef68e4..082f64c 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -503,7 +503,7 @@ PyDoc_STRVAR(dir_doc, " for a module object: the module's attributes.\n" " for a class object: its attributes, and recursively the attributes\n" " of its bases.\n" -" for an other object: its attributes, its class's attributes, and\n" +" for any other object: its attributes, its class's attributes, and\n" " recursively the attributes of its class's base classes."); static PyObject * |