[Python-checkins] r52392 - peps/trunk/pep-0302.txt

brett.cannon python-checkins at python.org
Fri Oct 20 04:07:01 CEST 2006


Author: brett.cannon
Date: Fri Oct 20 04:07:00 2006
New Revision: 52392

Modified:
   peps/trunk/pep-0302.txt
Log:
Fix a minor grammar error.


Modified: peps/trunk/pep-0302.txt
==============================================================================
--- peps/trunk/pep-0302.txt	(original)
+++ peps/trunk/pep-0302.txt	Fri Oct 20 04:07:00 2006
@@ -396,7 +396,7 @@
     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
     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()
     if all it needs is the code object.)
 


More information about the Python-checkins mailing list