Fix a minor grammar error.

This commit is contained in:
Brett Cannon 2006-10-20 02:07:00 +00:00
parent 6c5632d2ca
commit 4c8c08686b
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ Optional Extensions to the Importer Protocol
The loader.get_code(fullname) method should return the code object The loader.get_code(fullname) method should return the code object
associated with the module, or None if it's a built-in or extension associated with the module, or None if it's a built-in or extension
module. If the loader doesn't have the code object but it _does_ module. If the loader doesn't have the code object but it _does_
have the source code, it should return the compiled the source code. have the source code, it should return the compiled source code.
(This is so that our caller doesn't also need to check get_source() (This is so that our caller doesn't also need to check get_source()
if all it needs is the code object.) if all it needs is the code object.)